From bbfdd41f6c25dcea71eec1c626c0f4dd508224b5 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Thu, 31 Jul 2025 19:03:44 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E7=82=B9=E8=B4=B9=E7=94=A8=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../emisWaybillAjustApply/adjustPanel.vue | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue index 81e8c248..189676ef 100644 --- a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue +++ b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue @@ -347,7 +347,7 @@ - + newValue this.form==>",this.form); console.log("====>newValue this.form.packType==>",this.form.packType); @@ -2195,7 +2195,20 @@ export default { if(this.form.reciever){ this.recieverCountryCode = this.form.reciever.country; } - } + }, + onPaymentTypeChange() { + //console.log("==onPaymentTypeChange==>") + // 非月结清空月结客户选择 + if (this.form.paymentType == '1' || + this.form.paymentType == '3' || + this.form.paymentType == '6' + ) { + this.form.custNo = null; + this.form.customerCode = null; + this.calcBillFee(); + } + + }, } };