|
@@ -1,20 +1,20 @@
|
|
|
<template>
|
|
|
<div class="distributor-page">
|
|
|
<div class="banner">
|
|
|
- <div class="container">成为四维看看经销商</div>
|
|
|
+ <div class="container">{{ $t('agent.bannerTitle') }}</div>
|
|
|
</div>
|
|
|
<div class="container">
|
|
|
<div class="plate">
|
|
|
- <h1 class="common-title">四维看看经销商计划概述</h1>
|
|
|
+ <h1 class="common-title">{{ $t('agent.planTitle') }}</h1>
|
|
|
<ul class="plan">
|
|
|
- <li>四维时代独创的AI空间重构算法技术已屡获殊荣,并累计在全球范围采集超过30万个空间模型。</li>
|
|
|
- <li>这种全新的空间记录方式正在逐步改变各行各业的业务模式(房地产、建筑、文博、旅游、新闻、保险理赔、刑侦记录等等)。</li>
|
|
|
- <li>四维看看经销商计划诚邀各业界专业人士,参与到未来的“数字万物”的进程中,共同开拓市场,分享利润。</li>
|
|
|
- <li>如果您对3D捕捉世界的想法很感兴趣,并愿将其纳入到您的事业规划中,这是一个绝佳的合作机会。</li>
|
|
|
+ <li>{{ $t('agent.planDesc1') }}</li>
|
|
|
+ <li>{{ $t('agent.planDesc2') }}</li>
|
|
|
+ <li>{{ $t('agent.planDesc3') }}</li>
|
|
|
+ <li>{{ $t('agent.planDesc4') }}</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div class="plate">
|
|
|
- <h1 class="common-title">成为增值经销商的好处</h1>
|
|
|
+ <h1 class="common-title">{{ $t('agent.advanTitle') }}</h1>
|
|
|
<div class="benefit-w clear">
|
|
|
<div class="benefit-item" v-for="(item, index) in benefits" :key="index">
|
|
|
<div class="icon" :style="{backgroundImage: `url(${item.icon})`}"></div>
|
|
@@ -27,77 +27,77 @@
|
|
|
|
|
|
<div class="form-plate">
|
|
|
<div class="container">
|
|
|
- <h1 class="common-title">成为四维看看经销商</h1>
|
|
|
+ <h1 class="common-title">{{ $t('agent.jinxiaoTitle') }}</h1>
|
|
|
<h-row :gutter="96">
|
|
|
<h-col :span="12">
|
|
|
<div class="form">
|
|
|
- <p class="form-title">公司信息</p>
|
|
|
+ <p class="form-title">{{ $t('agent.jinxiaoForm.companytitle') }}</p>
|
|
|
<div class="form-item">
|
|
|
- <p class="label">*公司注册名称</p>
|
|
|
- <input type="text" v-model="form.name" placeholder="请输入公司注册名称">
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.companyNameLabel') }}</p>
|
|
|
+ <input type="text" v-model="form.name" :placeholder="$t('agent.jinxiaoForm.companyNamePlaceholder')">
|
|
|
</div>
|
|
|
<div class="form-item">
|
|
|
- <p class="label">*公司地址</p>
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.addressLabel') }}</p>
|
|
|
<h-row :gutter="10">
|
|
|
<h-col :span="12">
|
|
|
- <input type="text" v-model="form.country" placeholder="国家">
|
|
|
+ <input type="text" v-model="form.country" :placeholder="$t('agent.jinxiaoForm.addressPlaceholder1')">
|
|
|
</h-col>
|
|
|
<h-col :span="12">
|
|
|
- <input type="text" v-model="form.region" placeholder="地区">
|
|
|
+ <input type="text" v-model="form.region" :placeholder="$t('agent.jinxiaoForm.addressPlaceholder2')">
|
|
|
</h-col>
|
|
|
</h-row>
|
|
|
- <input type="text" v-model="form.address" placeholder="请输入公司地址">
|
|
|
+ <input type="text" v-model="form.address" :placeholder="$t('agent.jinxiaoForm.addressPlaceholder3')">
|
|
|
</div>
|
|
|
<div class="form-item">
|
|
|
- <p class="label">是否有门店或企业网站</p>
|
|
|
+ <p class="label">{{ $t('agent.jinxiaoForm.storeLabel') }}</p>
|
|
|
<h-row :gutter="10">
|
|
|
<h-col :span="12">
|
|
|
- <div :class="`input ${form.type === 1 ? 'active' : ''}`" @click="form.type = 1">线下销售为主</div>
|
|
|
+ <div :class="`input ${form.type === 1 ? 'active' : ''}`" @click="form.type = 1">{{ $t('agent.jinxiaoForm.storeType1') }}</div>
|
|
|
</h-col>
|
|
|
<h-col :span="12">
|
|
|
- <div :class="`input ${form.type === 2 ? 'active' : ''}`" @click="form.type = 2">线上销售为主</div>
|
|
|
+ <div :class="`input ${form.type === 2 ? 'active' : ''}`" @click="form.type = 2">{{ $t('agent.jinxiaoForm.storeType2') }}</div>
|
|
|
</h-col>
|
|
|
</h-row>
|
|
|
- <input type="text" v-model="form.storeAddress" :placeholder="`请输入${form.type === 1 ? '门店详细地址' : '企业网站网址'}`">
|
|
|
+ <input type="text" v-model="form.storeAddress" :placeholder="$t('agent.jinxiaoForm.storePlaceholder')">
|
|
|
</div>
|
|
|
</div>
|
|
|
</h-col>
|
|
|
<h-col :span="12"><div class="form">
|
|
|
- <p class="form-title">申请人信息</p>
|
|
|
+ <p class="form-title">{{ $t('agent.jinxiaoForm.applytitle') }}</p>
|
|
|
<div class="form-item">
|
|
|
<h-row :gutter="10">
|
|
|
<h-col :span="12">
|
|
|
- <p class="label">*姓</p>
|
|
|
- <input type="text" v-model="form.surName" placeholder="">
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.applyNameXing') }}</p>
|
|
|
+ <input type="text" v-model="form.surName" :placeholder="$t('agent.jinxiaoForm.applyNamePlaceholder')">
|
|
|
</h-col>
|
|
|
<h-col :span="12">
|
|
|
- <p class="label">*名</p>
|
|
|
- <input type="text" v-model="form.userName" placeholder="">
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.applyNameMing') }}</p>
|
|
|
+ <input type="text" v-model="form.userName" :placeholder="$t('agent.jinxiaoForm.applyNamePlaceholder1')">
|
|
|
</h-col>
|
|
|
</h-row>
|
|
|
</div>
|
|
|
<div class="form-item" style="margin-bottom: 26px">
|
|
|
- <p class="label">*职位</p>
|
|
|
- <input type="text" v-model="form.post" placeholder="">
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.positionLabel') }}</p>
|
|
|
+ <input type="text" v-model="form.post" :placeholder="$t('agent.jinxiaoForm.positionPlaceholder')">
|
|
|
</div>
|
|
|
<div class="form-item">
|
|
|
- <p class="label">*电话</p>
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.phoneLabel') }}</p>
|
|
|
<h-row :gutter="10">
|
|
|
<h-col :span="8">
|
|
|
<input type="text" v-model="form.areaCode" placeholder="+86" value="+86">
|
|
|
</h-col>
|
|
|
<h-col :span="16">
|
|
|
- <input type="text" v-model="form.phone" placeholder="请输入电话">
|
|
|
+ <input type="text" v-model="form.phone" :placeholder="$t('agent.jinxiaoForm.phonePlaceholder')">
|
|
|
</h-col>
|
|
|
</h-row>
|
|
|
</div>
|
|
|
<div class="form-item">
|
|
|
- <p class="label">*电子邮箱</p>
|
|
|
- <input type="text" v-model="form.email" placeholder="请输入电子邮箱">
|
|
|
+ <p class="label">*{{ $t('agent.jinxiaoForm.emailLabel') }}</p>
|
|
|
+ <input type="text" v-model="form.email" :placeholder="$t('agent.jinxiaoForm.emailPlaceholder')">
|
|
|
</div>
|
|
|
</div></h-col>
|
|
|
</h-row>
|
|
|
- <div class="submit-btn" @click="saveAduit">提交</div>
|
|
|
+ <div class="submit-btn" @click="saveAduit">{{ $t('agent.jinxiaoForm.submit') }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -127,40 +127,40 @@ export default {
|
|
|
storeAddress: ''
|
|
|
},
|
|
|
rules: {
|
|
|
- name: [ { required: true, message: '请填写公司注册名称' } ],
|
|
|
- address: [ { required: true, message: '请填写公司地址' } ],
|
|
|
- country: [ { required: true, message: '请填写公司所在国家' } ],
|
|
|
- region: [ { required: true, message: '请填写公司所在地区' } ],
|
|
|
- userName: [ { required: true, message: '请填写姓氏' } ],
|
|
|
- userName: [ { required: true, message: '请填写名字' } ],
|
|
|
- post: [ { required: true, message: '请填写职位' } ],
|
|
|
- phone: [ { required: true, message: '请填写手机号码' } ],
|
|
|
- email: [ { required: true, message: '请填写联系邮箱' } ],
|
|
|
+ name: [ { required: true, message: this.$t('agent.jinxiaoForm.companyNamePlaceholder') } ],
|
|
|
+ address: [ { required: true, message: this.$t('agent.jinxiaoForm.addressPlaceholder3') } ],
|
|
|
+ country: [ { required: true, message: this.$t('agent.jinxiaoForm.addressPlaceholder1') } ],
|
|
|
+ region: [ { required: true, message: this.$t('agent.jinxiaoForm.addressPlaceholder2') } ],
|
|
|
+ userName: [ { required: true, message: this.$t('agent.jinxiaoForm.applyNamePlaceholder') } ],
|
|
|
+ userName: [ { required: true, message: this.$t('agent.jinxiaoForm.applyNamePlaceholder1') } ],
|
|
|
+ post: [ { required: true, message: this.$t('agent.jinxiaoForm.positionPlaceholder') } ],
|
|
|
+ phone: [ { required: true, message: this.$t('agent.jinxiaoForm.phonePlaceholder') } ],
|
|
|
+ email: [ { required: true, message: this.$t('agent.jinxiaoForm.emailPlaceholder') } ],
|
|
|
},
|
|
|
benefits: [
|
|
|
{
|
|
|
- name: '利润分成',
|
|
|
- desc: '丰厚的利润分成',
|
|
|
+ name: this.$t('agent.advan.item1Title'),
|
|
|
+ desc: this.$t('agent.advan.item1Sub'),
|
|
|
icon: require('@/assets/images/distributor/icon-1.png')
|
|
|
},
|
|
|
{
|
|
|
- name: '专属客服',
|
|
|
- desc: '提供专属的专业的销售与技术人员',
|
|
|
+ name: this.$t('agent.advan.item2Title'),
|
|
|
+ desc: this.$t('agent.advan.item2Sub'),
|
|
|
icon: require('@/assets/images/distributor/icon-2.png')
|
|
|
},
|
|
|
{
|
|
|
- name: '宣传资料',
|
|
|
- desc: '定期更新的宣传视频及宣传案例',
|
|
|
+ name: this.$t('agent.advan.item3Title'),
|
|
|
+ desc: this.$t('agent.advan.item3Sub'),
|
|
|
icon: require('@/assets/images/distributor/icon-3.png')
|
|
|
},
|
|
|
{
|
|
|
- name: '店面布置',
|
|
|
- desc: '支持店面必要的广告物料',
|
|
|
+ name: this.$t('agent.advan.item4Title'),
|
|
|
+ desc: this.$t('agent.advan.item4Sub'),
|
|
|
icon: require('@/assets/images/distributor/icon-4.png')
|
|
|
},
|
|
|
{
|
|
|
- name: '发展机会',
|
|
|
- desc: '参与营销与科技大会的机会',
|
|
|
+ name: this.$t('agent.advan.item5Title'),
|
|
|
+ desc: this.$t('agent.advan.item5Sub'),
|
|
|
icon: require('@/assets/images/distributor/icon-5.png')
|
|
|
},
|
|
|
]
|
|
@@ -281,6 +281,7 @@ export default {
|
|
|
color: #909090;
|
|
|
&.active {
|
|
|
color: #202020;
|
|
|
+ border-color: #1FE4DC;
|
|
|
}
|
|
|
}
|
|
|
.submit-btn {
|