diff --git a/src/components/PricingSection.vue b/src/components/PricingSection.vue index 468599f..c07a541 100644 --- a/src/components/PricingSection.vue +++ b/src/components/PricingSection.vue @@ -7,6 +7,10 @@ import './pricing/fonts.css' const { t } = useI18n() const getStarted = () => window.location.assign('https://app.memoh.net') +const plans = computed(() => [ + { name: 'Go', price: 5, credits: 2500, tagline: t('pricing.go.tagline'), cpu: 8, ram: 16, disk: 40, members: 1 }, + { name: 'Pro', price: 60, credits: 30000, tagline: t('pricing.pro.tagline'), cpu: 16, ram: 32, disk: 120, members: 3 }, + { name: 'Premium', price: 150, credits: 75000, tagline: t('pricing.premium.tagline'), cpu: 32, ram: 64, disk: 300, members: 8 }, const plans = computed(() => [ { name: 'Go', price: 5, credits: 2500, tagline: t('pricing.go.tagline'), cpu: 8, ram: 16, disk: 40, members: 1 }, { name: 'Pro', price: 60, credits: 30000, tagline: t('pricing.pro.tagline'), cpu: 16, ram: 32, disk: 120, members: 3 }, @@ -61,10 +65,6 @@ const plans = computed(() => [ :current-label="t('pricing.currentPlan')" :cta-label="t('pricing.cta')" @select="getStarted" - :highlight-label="zh ? '推荐' : 'Recommended'" - :current-label="zh ? '当前套餐' : 'Current plan'" - cta-label="Get Started" - @select="getStarted(plan.code)" /> diff --git a/src/locales/zh.json b/src/locales/zh.json index b09b484..9988a94 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -195,7 +195,7 @@ } }, "pricing": { - "title": "Pricing", + "title": "定价", "go": { "tagline": "从日常对话和轻量任务开始。" }, "pro": { "tagline": "为日常工作和持续运行的 Agent 准备。" }, "premium": { "tagline": "为更复杂的任务提供更多算力和空间。" }, @@ -212,7 +212,7 @@ "perMonth": "/ 月", "recommended": "推荐", "currentPlan": "当前套餐", - "cta": "Get Started" + "cta": "立即开始" }, "cta_bottom": { "title": "试试 Memoh",