|
|
@@ -24,20 +24,20 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<h3>{{ $t('ru-zhu-liu-cheng') }}</h3>
|
|
|
- <scroll-view scroll-x style="width: 100%;">
|
|
|
+ <scroll-view scroll-x style="width: 100%">
|
|
|
<div class="process-list">
|
|
|
<process
|
|
|
v-for="(item, index) in processes"
|
|
|
:icon="item.icon"
|
|
|
- :preTitle="item.preTitle"
|
|
|
- :title="item.title"
|
|
|
+ :preTitle="getName(item.preTitle)"
|
|
|
+ :title="getName(item.title)"
|
|
|
:steps="item.steps"
|
|
|
:index="index"
|
|
|
:key="index"
|
|
|
@show="show = true"
|
|
|
></process>
|
|
|
|
|
|
- <div style="min-width: 8px;"></div>
|
|
|
+ <div style="min-width: 8px"></div>
|
|
|
</div>
|
|
|
</scroll-view>
|
|
|
|
|
|
@@ -50,8 +50,8 @@
|
|
|
<van-popup :show="show" round position="bottom" @close="show = false">
|
|
|
<div class="tips-content">
|
|
|
<div class="tips-item" v-for="(item, index) in tips" :key="index">
|
|
|
- <div class="text1">{{ item.text1 }}</div>
|
|
|
- <div class="text2">{{ item.text2 }}</div>
|
|
|
+ <div class="text1">{{ getName(item.text1) }}</div>
|
|
|
+ <div class="text2">{{ getName(item.text2) }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</van-popup>
|
|
|
@@ -74,66 +74,104 @@ export default {
|
|
|
processes: [
|
|
|
{
|
|
|
icon: 'http://imttech.oss-cn-hangzhou.aliyuncs.com/micro/ruzhu_icon_jieduan01.png',
|
|
|
- preTitle: '阶段一',
|
|
|
- title: '入驻申请',
|
|
|
+ preTitle: {
|
|
|
+ chName: '阶段一',
|
|
|
+ enName: 'NO'
|
|
|
+ },
|
|
|
+ title: {
|
|
|
+ chName: '入驻申请',
|
|
|
+ enName: 'Membership Application'
|
|
|
+ },
|
|
|
steps: [
|
|
|
{
|
|
|
- text: '查询确认入驻资格',
|
|
|
+ text: {
|
|
|
+ chName: '查询确认入驻资格',
|
|
|
+ enName: 'Check Areas of Member'
|
|
|
+ },
|
|
|
tips: [
|
|
|
{
|
|
|
- text1: '查看企业:',
|
|
|
- text2: '平台是否已经存在本企业,进行企业认领'
|
|
|
+ text1: {
|
|
|
+ chName: '查看类别:',
|
|
|
+ enName: 'Areas: '
|
|
|
+ },
|
|
|
+ text2: {
|
|
|
+ chName: '企业生产或经营的产品包含于IMT平台产品类别范围内',
|
|
|
+ enName:
|
|
|
+ " Products/Services shall be included in the scope of IMT Tech member's area. Click for detail."
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
- text1: '查看类别:',
|
|
|
- text2: '企业生产或经营的产品包含于IMT平台产品类别范围内'
|
|
|
+ text1: {
|
|
|
+ chName: '查看企业:',
|
|
|
+ enName: 'Check:'
|
|
|
+ },
|
|
|
+ text2: {
|
|
|
+ chName: '平台是否已经存在本企业,进行企业认领',
|
|
|
+ enName:
|
|
|
+ 'Already an IMT Tech member? Contact your colleague to maintain Online Showroom together!'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- text: '填写账号/企业信息进行注册'
|
|
|
+ text: {
|
|
|
+ chName: '填写账号/企业信息进行注册',
|
|
|
+ enName: 'Create company profile for registration'
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
- text: '确认在线服务协议'
|
|
|
+ text: {
|
|
|
+ chName: '确认在线服务协议',
|
|
|
+ enName: 'Confirm and agree with the Membership Agreement'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
icon: 'http://imttech.oss-cn-hangzhou.aliyuncs.com/micro/ruzhu_icon_jieduan02.png',
|
|
|
- preTitle: '阶段二',
|
|
|
- title: '信息审核',
|
|
|
+ preTitle: { chName: '阶段二', enName: 'Step Two' },
|
|
|
+ title: { chName: '信息审核', enName: 'Qualification Review' },
|
|
|
steps: [
|
|
|
{
|
|
|
- text: '平台人工审核企业资质,并于7个工作日内反馈'
|
|
|
+ text: {
|
|
|
+ chName: '平台人工审核企业资质,并于7个工作日内反馈',
|
|
|
+ enName: 'Qualification reviewed by IMT. Up to 7 working days for result.'
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
- text: '商家可随时在个人中心查询入驻审核进度'
|
|
|
+ text: {
|
|
|
+ chName: '商家可随时在个人中心查询入驻审核进度',
|
|
|
+ enName: 'Review progress could be checked through Management Center'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
icon: 'http://imttech.oss-cn-hangzhou.aliyuncs.com/micro/ruzhu_icon_jieduan03.png',
|
|
|
- preTitle: '阶段三',
|
|
|
- title: '功能开通',
|
|
|
+ preTitle: { chName: '阶段三', enName: 'Step Three' },
|
|
|
+ title: { chName: '功能开通', enName: 'Open the Function of Online Showroom ' },
|
|
|
steps: [
|
|
|
{
|
|
|
- text: '审核通过后,开通会员功能'
|
|
|
+ text: {
|
|
|
+ chName: '审核通过后,开通会员功能',
|
|
|
+ enName: 'Function and feature will be unlocked after passing the review.'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
icon: 'http://imttech.oss-cn-hangzhou.aliyuncs.com/micro/ruzhu_icon_jieduan04.png',
|
|
|
- preTitle: '阶段四',
|
|
|
- title: '店铺上线',
|
|
|
+ preTitle: { chName: '阶段四', enName: 'Step Four' },
|
|
|
+ title: { chName: '店铺上线', enName: 'Online Showroom Launching' },
|
|
|
steps: [
|
|
|
{
|
|
|
- text: '装修店铺'
|
|
|
+ text: { chName: '装修店铺', enName: 'Online Showroom Management' }
|
|
|
},
|
|
|
{
|
|
|
- text: '管理产品类别'
|
|
|
+ text: { chName: '管理产品类别', enName: 'Products Series Management' }
|
|
|
},
|
|
|
{
|
|
|
- text: '上传产品'
|
|
|
+ text: { chName: '上传产品', enName: 'Product Management' }
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
@@ -141,12 +179,26 @@ export default {
|
|
|
show: false,
|
|
|
tips: [
|
|
|
{
|
|
|
- text1: '查看企业:',
|
|
|
- text2: '平台是否已经存在本企业,进行企业认领'
|
|
|
+ text1: {
|
|
|
+ chName: '查看类别:',
|
|
|
+ enName: 'Areas: '
|
|
|
+ },
|
|
|
+ text2: {
|
|
|
+ chName: '企业生产或经营的产品包含于IMT平台产品类别范围内',
|
|
|
+ enName:
|
|
|
+ " Products/Services shall be included in the scope of IMT Tech member's area. Click for detail."
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
- text1: '查看类别:',
|
|
|
- text2: '企业生产或经营的产品包含于IMT平台产品类别范围内'
|
|
|
+ text1: {
|
|
|
+ chName: '查看企业:',
|
|
|
+ enName: 'Check:'
|
|
|
+ },
|
|
|
+ text2: {
|
|
|
+ chName: '平台是否已经存在本企业,进行企业认领',
|
|
|
+ enName:
|
|
|
+ 'Already an IMT Tech member? Contact your colleague to maintain Online Showroom together!'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
};
|