From 2b70b18fea4bc81f401575d66ae665790bcb7fed Mon Sep 17 00:00:00 2001 From: zhaoxiao Date: Thu, 4 Nov 2021 16:39:59 +0800 Subject: [PATCH] =?UTF-8?q?[bug]=20=E5=8D=95=E4=B8=AA=E5=BC=80=E7=A5=A8?= =?UTF-8?q?=E8=81=94=E7=B3=BB=E4=BA=BA=E5=9C=B0=E5=9D=80=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../arriveAndInvoicing/modules/InvoicingModule.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue index 52cdccd..f6034f8 100644 --- a/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue +++ b/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue @@ -118,6 +118,7 @@ export default { } }, postalCode: '', // 邮寄联系人邮编 + contactAddress: '' // 邮寄联系人地址 } }, methods: { @@ -137,6 +138,7 @@ export default { getMailContactPostalCode() { getContactsById({id: this.mailContactsId}).then(res => { this.postalCode = res.result.postalCode + this.contactAddress = res.result.contactAddress }) }, handleOk() { @@ -150,6 +152,8 @@ export default { values.projectName = this.projectName values.contactId = this.mailContactsId values.postalCode = this.postalCode + values.contactAddress = this.contactAddress + console.log(values) const formData = Object.assign(this.model, values) console.log('表单提交数据', formData) let okHttpMethod