From 81348db722947aafbeecdc27cd487d9b04ee7384 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Mon, 17 Mar 2025 10:57:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=B9=B3=E4=BB=93=E4=BB=98?= =?UTF-8?q?=E6=AC=BE=E7=AE=A1=E7=90=86--=20=E6=96=B0=E5=A2=9E=E3=80=81?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E9=A1=B5=E9=9D=A2=E6=94=B6=E6=AC=BE=E5=8D=95?= =?UTF-8?q?=E4=BD=8D=E6=94=B9=E4=B8=BA=E8=8E=B7=E5=8F=96=E3=80=82=E9=93=B6?= =?UTF-8?q?=E8=A1=8C=E8=B4=A6=E5=8F=B7=E4=B8=8B=E6=8B=89=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../financingClosingPayment.vue | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/financingClosingPayment/financingClosingPayment.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/financingClosingPayment/financingClosingPayment.vue index 16ec1ca198..cf2a9056e5 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/financingClosingPayment/financingClosingPayment.vue +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/financingClosingPayment/financingClosingPayment.vue @@ -102,16 +102,17 @@ -
收款单位
+
银行账号
- - + + +
-
银行账号
- {{ formobj.receivingAccount }} +
收款单位
+ {{ formobj.receiveCompany }}
@@ -408,14 +409,14 @@ export default { } }, receiveCompanyChange(value) { - const choose = this.receiveCompany_list.filter((item) => item.companyName === value) + const choose = this.receiveCompany_list.filter((item) => item.receiveCompany === value) if (choose !== null && choose.length > 0) { this.formobj.receiveCompanySid = choose[0].sid - this.formobj.receivingAccount = choose[0].receivingAccount + this.formobj.receiveCompany = choose[0].receiveCompany this.formobj.bank = choose[0].bank } else { this.formobj.receiveCompanySid = '' - this.formobj.receivingAccount = '' + this.formobj.receiveCompany = '' this.formobj.bank = '' } },