|
@ -41,23 +41,24 @@ |
|
|
<input v-model="form.address" :placeholder="$t('other.enterCompanyAddress')" clearable></input> |
|
|
<input v-model="form.address" :placeholder="$t('other.enterCompanyAddress')" clearable></input> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<!--dian--> |
|
|
|
|
|
|
|
|
<!--联系电话--> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<view>{{ $t('components.lxPhone')}}</view> |
|
|
<view>{{ $t('components.lxPhone')}}</view> |
|
|
<view> |
|
|
<view> |
|
|
<input v-model="form.phone" :placeholder="$t('components.plePhoneNumber')" clearable></input> |
|
|
<input v-model="form.phone" :placeholder="$t('components.plePhoneNumber')" clearable></input> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<!----> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<view>{{ $t('other.companyAccount')}}</view> |
|
|
<view>{{ $t('other.companyAccount')}}</view> |
|
|
<view> |
|
|
<view> |
|
|
<input v-model="form.address" :placeholder="$t('other.enterCompanyAccount')" clearable></input> |
|
|
|
|
|
|
|
|
<input v-model="form.bankAccount" :placeholder="$t('other.enterCompanyAccount')" clearable></input> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<view>{{ $t('components.bankName')}}</view> |
|
|
<view>{{ $t('components.bankName')}}</view> |
|
|
<view> |
|
|
<view> |
|
|
<input v-model="form.address" :placeholder="$t('components.enterBankName')" clearable></input> |
|
|
|
|
|
|
|
|
<input v-model="form.bankNama" :placeholder="$t('components.enterBankName')" clearable></input> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
@ -129,29 +130,38 @@ |
|
|
|
|
|
|
|
|
<view class="bottom"> |
|
|
<view class="bottom"> |
|
|
<view class="btns"> |
|
|
<view class="btns"> |
|
|
|
|
|
<!--申请审核--> |
|
|
<span @click="applyReview" class="sqsh"> |
|
|
<span @click="applyReview" class="sqsh"> |
|
|
{{ $t('components.submitReview') }} |
|
|
{{ $t('components.submitReview') }} |
|
|
</span> |
|
|
</span> |
|
|
|
|
|
<!--联系我们--> |
|
|
<span @click="contactUs" class="lxwm"> |
|
|
<span @click="contactUs" class="lxwm"> |
|
|
{{ $t('components.contactUs') }} |
|
|
{{ $t('components.contactUs') }} |
|
|
</span> |
|
|
</span> |
|
|
</view> |
|
|
</view> |
|
|
<view class="others"> |
|
|
<view class="others"> |
|
|
|
|
|
<!--注册须知--> |
|
|
<span @click="applyReview" class="zcxz"> |
|
|
<span @click="applyReview" class="zcxz"> |
|
|
{{ $t('components.registrationNotice') }} |
|
|
{{ $t('components.registrationNotice') }} |
|
|
</span> |
|
|
</span> |
|
|
|
|
|
<!--框架合同预览--> |
|
|
<span @click="contactUs" class="kjhtyl"> |
|
|
<span @click="contactUs" class="kjhtyl"> |
|
|
{{ $t('other.frameworkContractPreview') }} |
|
|
{{ $t('other.frameworkContractPreview') }} |
|
|
</span> |
|
|
</span> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<!-- 联系客服弹框 --> |
|
|
|
|
|
<customerServicePopup ref="customerServicePopup" /> |
|
|
|
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import customerServicePopup from "@/components/config/customerServicePopup.vue"; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
|
|
|
components: {customerServicePopup}, |
|
|
onLoad(option) { |
|
|
onLoad(option) { |
|
|
this.titleIndex = option.identity |
|
|
this.titleIndex = option.identity |
|
|
}, |
|
|
}, |
|
@ -166,13 +176,13 @@ export default { |
|
|
], |
|
|
], |
|
|
form: { |
|
|
form: { |
|
|
"address": "", |
|
|
"address": "", |
|
|
|
|
|
"auditStatus": 0, |
|
|
"bankAccount": "", |
|
|
"bankAccount": "", |
|
|
"bankInfo": "", |
|
|
"bankInfo": "", |
|
|
"bankNama": "", |
|
|
"bankNama": "", |
|
|
"basicAccount": "", |
|
|
"basicAccount": "", |
|
|
"businessLicense": "", |
|
|
"businessLicense": "", |
|
|
"companyName": "", |
|
|
"companyName": "", |
|
|
"id": "", |
|
|
|
|
|
"password": "", |
|
|
"password": "", |
|
|
"phone": "", |
|
|
"phone": "", |
|
|
"role": 0, |
|
|
"role": 0, |
|
@ -187,7 +197,7 @@ export default { |
|
|
methods: { |
|
|
methods: { |
|
|
// 申请审核 |
|
|
// 申请审核 |
|
|
applyReview() { |
|
|
applyReview() { |
|
|
this.$api('loginLogout', res => { |
|
|
|
|
|
|
|
|
this.$api('roleOption',this.form, res => { |
|
|
if (res.code == 200) { |
|
|
if (res.code == 200) { |
|
|
uni.removeStorageSync('token') |
|
|
uni.removeStorageSync('token') |
|
|
this.$store.state.userInfo = {} |
|
|
this.$store.state.userInfo = {} |
|
@ -199,7 +209,8 @@ export default { |
|
|
}, |
|
|
}, |
|
|
// 联系我们 |
|
|
// 联系我们 |
|
|
contactUs() { |
|
|
contactUs() { |
|
|
|
|
|
|
|
|
|
|
|
console.log("打开客服弹框") |
|
|
|
|
|
this.$refs.customerServicePopup.open(); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|