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(); + } + + }, } };