Browse Source

对接登录

master
前端-胡立永 3 months ago
parent
commit
28d57ac963
1 changed files with 20 additions and 3 deletions
  1. +20
    -3
      pages_order/auth/customsClearApply.vue

+ 20
- 3
pages_order/auth/customsClearApply.vue View File

@ -177,9 +177,26 @@
//
applyReview() {
this.form.basicAccount = this.jbhxxfileList.join(",") //
this.form.bankInfo = this.skyhfileList.join(",") //
this.form.businessLicense = this.yyzzfileList.join(",") //
this.form.basicAccount = this.jbhxxfileList.map((item) => item.url).join(",") //
this.form.bankInfo = this.skyhfileList.map((item) => item.url).join(",") //
this.form.businessLicense = this.yyzzfileList.map((item) => item.url).join(",") //
if(this.$utils.verificationAll(this.form, {
"userName": this.$t('components.enterUserName'),
"password": this.$t('components.enterYourPassword'),
"companyName": this.$t('other.enterCompanyName'),
"taxCode": this.$t('other.enterTaxCode'),
"address": this.$t('other.enterCompanyAddress'),
"phone": this.$t('components.plePhoneNumber'),
"bankAccount": this.$t('other.enterCompanyAccount'),
"bankNama": this.$t('components.enterBankName'),
"businessLicense": '请上传营业执照',
"basicAccount": '请上传基本户信息照片',
"bankInfo": '请上传收款银行照片',
})){
return
}
this.$api('addCustoms', this.form, res => {
if (res.code == 200) {
uni.redirectTo({


Loading…
Cancel
Save