From ea41437511c37c566916cb0b8b6202fb6cec5d74 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 4 Mar 2024 16:33:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=A5=E9=A9=BB=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/store/settled/index.vue | 71 ++++++++++++++++++++++++++++++++++- pages/store/settled/unit.vue | 64 ++++++++++++++++++++++++++++++- 2 files changed, 131 insertions(+), 4 deletions(-) diff --git a/pages/store/settled/index.vue b/pages/store/settled/index.vue index 39a5b27..c404073 100644 --- a/pages/store/settled/index.vue +++ b/pages/store/settled/index.vue @@ -202,6 +202,58 @@ + + + + 对公账号 + + + + + + 银行卡号 + + + + + + 开户银行 + + + + + + 开户网点 + + + + + + 持卡人 + + + + + + 请上传银行卡正面照片 + (图片格式支持JPG、PNG、JPEG) + + + + + + + 上传图片 + + + + + 联系电话 @@ -392,6 +444,7 @@ import { Toast } from '../../../libs/uniApi'; invitation_code: '', }, business_license: '',//营业执照 + bank_front: '', //银行卡照片 validate: false, successful: false, keyCode: "", @@ -817,6 +870,12 @@ import { Toast } from '../../../libs/uniApi'; that.$set(that, 'pics', that.pics); }); }, + uploadpicBack: function() { + let that = this; + that.$util.uploadImageOne('upload/image', function(res) { + that.bank_front = res.data.path; + }); + }, /** * 上传图片识别文字 * @@ -957,7 +1016,15 @@ import { Toast } from '../../../libs/uniApi'; street_id: this.street_id, village_id: this.village_id, is_nmsc: this.isnum, - images: [this.business_license, ...that.pics] + images: [this.business_license, ...that.pics], + financial_bank:{ + // 开户信息 + bank_code: this.merchantData.bank_code, + bank: this.merchantData.bank_username, + bank_branch: this.merchantData.bank_opening, + name: this.nature_business == 1 ? that.merchantData.company_name : this.merchantData.bank_card_username, + bank_front: [this.bank_front] + } } that.validate = false; if (that.mer_i_id) { @@ -1231,7 +1298,7 @@ import { Toast } from '../../../libs/uniApi'; .merchantsSettled { background-image: linear-gradient(var(--view-bntColor21) 0%, var(--view-bntColor22) 100%); - min-height: 2600rpx; + min-height: 3200rpx; position: relative; } diff --git a/pages/store/settled/unit.vue b/pages/store/settled/unit.vue index 966bdbb..23b7168 100644 --- a/pages/store/settled/unit.vue +++ b/pages/store/settled/unit.vue @@ -101,6 +101,51 @@ + + + + 银行卡号 + + + + + + 开户银行 + + + + + + 开户网点 + + + + + + 持卡人 + + + + + + 请上传银行卡正面照片 + (图片格式支持JPG、PNG、JPEG) + + + + + + + 上传图片 + + + + + 联系电话 @@ -316,6 +361,7 @@ index1: 0, index2: [0, 0, 0], mer_classification: "", + bank_front: "", nature_business: 0, array: [{ category_name: '', @@ -740,6 +786,12 @@ that.$set(that, 'pics', that.pics); }); }, + uploadpicBack: function() { + let that = this; + that.$util.uploadImageOne('upload/image', function(res) { + that.bank_front = res.data.path; + }); + }, /** * 上传图片识别文字 * @@ -881,7 +933,15 @@ street_id: this.street_id, village_id: this.village_id, // is_nmsc: this.isnum, - images: [this.business_license, ...that.pics] + images: [this.business_license, ...that.pics], + financial_bank:{ + // 开户信息 + bank_code: this.merchantData.bank_code, + bank: this.merchantData.bank_username, + bank_branch: this.merchantData.bank_opening, + name: this.merchantData.bank_card_username, + bank_front: [this.bank_front] + } } that.validate = false; if (that.mer_i_id) { @@ -1091,7 +1151,7 @@ .merchantsSettled { background-image: linear-gradient(#ff5a32 644rpx, var(--view-bntColor22) 100%); - min-height: 1800rpx; + min-height: 2300rpx; position: relative; }