From 6fc11efbb404753e77b2b98480e186e8dcb78804 Mon Sep 17 00:00:00 2001 From: yujk <990961482@qq.com> Date: Fri, 10 Jun 2022 14:07:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=85=E5=9F=BA=E5=9C=B0app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../collectionAccount/collectionAdd.vue | 8 +- .../collectionAccount/collectionModify.vue | 79 +++++++++++++++++-- .../paymentAccount/paymentAccountAdd.vue | 5 +- .../paymentAccount/paymentAccountModify.vue | 3 +- 4 files changed, 77 insertions(+), 18 deletions(-) diff --git a/src/views/yinnong/bankAgriculture/collectionAccount/collectionAdd.vue b/src/views/yinnong/bankAgriculture/collectionAccount/collectionAdd.vue index d6d604c4..7511ecb7 100644 --- a/src/views/yinnong/bankAgriculture/collectionAccount/collectionAdd.vue +++ b/src/views/yinnong/bankAgriculture/collectionAccount/collectionAdd.vue @@ -170,7 +170,6 @@ }, getError(e){ - console.log(e) this.$notify({ type: 'danger', message: e.errors[0].message }); }, onConfirmBankType(data){ @@ -180,23 +179,22 @@ this.form.payeePaymentLines = "" this.showBankType = false; let queryParams={ - "pageNum": 1, - "pageSize": 20, "bankType":this.form.bankType, "status": "0", } listDeposit(queryParams).then(response => { this.bankDepositOptions = [] for(var i = 0 ; i < response.rows.length ; i++){ - this.bankDepositOptions.push({"text":response.rows[i].bankDeposit,"value":response.rows[i].id,"payeePaymentLines":response.rows[i].payeePaymentLines}); + this.bankDepositOptions.push({"text":response.rows[i].bankDeposit,"value":response.rows[i].id, + "payeePaymentLines":response.rows[i].payeePaymentLines,"institutionNumber":response.rows[i].institutionNumber}); } }); }, onConfirmBankDeposit(data){ - console.log(data) this.bankDeposit = data.text this.form.bankDeposit = data.value this.form.payeePaymentLines = data.payeePaymentLines + this.form.alternateField10 = data.institutionNumber this.showBankDeposit = false; }, onConfirmPayeeType(data){ diff --git a/src/views/yinnong/bankAgriculture/collectionAccount/collectionModify.vue b/src/views/yinnong/bankAgriculture/collectionAccount/collectionModify.vue index 66a51fd0..fd882efc 100644 --- a/src/views/yinnong/bankAgriculture/collectionAccount/collectionModify.vue +++ b/src/views/yinnong/bankAgriculture/collectionAccount/collectionModify.vue @@ -36,7 +36,28 @@ @cancel="showBankType = false" /> - + + + + +
@@ -95,21 +116,27 @@