diff --git a/pages_order/auth/customsClearApply.vue b/pages_order/auth/customsClearApply.vue index be936c3..1b47e85 100644 --- a/pages_order/auth/customsClearApply.vue +++ b/pages_order/auth/customsClearApply.vue @@ -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({