feat: support页i18n适配
- SupportTabs中英文文本添加 - SupportCard描述中英文文本
This commit is contained in:
@ -20,7 +20,7 @@
|
||||
<el-row>
|
||||
<NuxtLink class="card-link" :to="to">
|
||||
<el-button class="card-button" round>
|
||||
<span>了解更多 > </span>
|
||||
<span>{{ $t('learn-more') }} > </span>
|
||||
</el-button>
|
||||
</NuxtLink>
|
||||
</el-row>
|
||||
|
||||
@ -21,10 +21,10 @@
|
||||
|
||||
const activeTab = ref(props.modelValue || '');
|
||||
const options = [
|
||||
{ label: '服务支持', value: '' },
|
||||
{ label: '常见问题', value: 'faq' },
|
||||
{ label: '文档资料', value: 'documents' },
|
||||
{ label: '联系售后', value: 'contact-us' },
|
||||
{ label: $t('navigation.support'), value: '' },
|
||||
{ label: $t('navigation.faq'), value: 'faq' },
|
||||
{ label: $t('navigation.documents'), value: 'documents' },
|
||||
{ label: $t('navigation.contact-info'), value: 'contact-us' },
|
||||
];
|
||||
|
||||
const handleSegmentedChange = (value: string) => {
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
<div class="page-content">
|
||||
<section style="margin-bottom: 2rem">
|
||||
<p>
|
||||
金申机械制造有限公司致力于为客户提供优质的产品与服务。针对纸管机、分纸机、纸吸管等产品,我们提供全方位的售后服务,确保客户能够安心地使用我们的产品。
|
||||
{{ $t('support-page-desc') }}
|
||||
</p>
|
||||
</section>
|
||||
<div class="card-group">
|
||||
@ -35,19 +35,19 @@
|
||||
const supportItems = [
|
||||
{
|
||||
title: $t('navigation.faq'),
|
||||
description: '我们为用户整理了常见问题的答案,帮助您快速解决疑惑。',
|
||||
description: $t('support-card-desc.faq'),
|
||||
to: localePath('/support/faq'),
|
||||
iconComponent: ElIconQuestionFilled,
|
||||
},
|
||||
{
|
||||
title: $t('navigation.documents'),
|
||||
description: '我们为用户整理了常见问题的答案,帮助您快速解决疑惑。',
|
||||
description: $t('support-card-desc.documents'),
|
||||
to: localePath('/support/documents'),
|
||||
iconComponent: ElIconDocumentChecked,
|
||||
},
|
||||
{
|
||||
title: $t('navigation.contact-info'),
|
||||
description: '通过电话、邮箱联系我们,我们将现场为您服务。',
|
||||
description: $t('support-card-desc.contact-info'),
|
||||
to: localePath('/support/contact-us'),
|
||||
iconComponent: ElIconService,
|
||||
},
|
||||
|
||||
@ -63,5 +63,11 @@
|
||||
"loading": "Loading...",
|
||||
"our-products": "Our Products",
|
||||
"learn-our-solutions": "Learn Our Solutions",
|
||||
"all": "All"
|
||||
"all": "All",
|
||||
"support-page-desc": "Zhejiang Jinshen Machinery Manufacturing Co., Ltd is committed to providing high-quality products and services to our customers. For products such as paper tube machines, slitting machines, and paper straw equipment, we offer comprehensive after-sales support to ensure our customers can use our products with confidence.",
|
||||
"support-card-desc": {
|
||||
"faq": "We have compiled answers to frequently asked questions to help you quickly resolve any concerns.",
|
||||
"documents": "We provide product manuals, technical specifications, and other documentation for easy reference.",
|
||||
"contact-info": "Contact us by phone or email, and we will provide on-site support for you."
|
||||
}
|
||||
}
|
||||
|
||||
@ -63,5 +63,11 @@
|
||||
"loading": "加载中...",
|
||||
"our-products": "我们的产品",
|
||||
"learn-our-solutions": "了解我们的解决方案",
|
||||
"all": "全部"
|
||||
"all": "全部",
|
||||
"support-page-desc": "金申机械制造有限公司致力于为客户提供优质的产品与服务。针对纸管机、分纸机、纸吸管等产品,我们提供全方位的售后服务,确保客户能够安心地使用我们的产品。公司名可用占位符代替",
|
||||
"support-card-desc": {
|
||||
"faq": "我们为用户整理了常见问题的答案,帮助您快速解决疑惑。",
|
||||
"documents": "提供产品手册、技术规格等文档资料,方便用户查阅。",
|
||||
"contact-info": "通过电话、邮箱联系我们,我们将现场为您服务。"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user