网点费用申请调整
This commit is contained in:
parent
ddb236079b
commit
bbfdd41f6c
@ -347,7 +347,7 @@
|
||||
</el-col>
|
||||
<el-col :span="14">
|
||||
<el-form-item :label="$t('支付方式')" prop="paymentType" >
|
||||
<el-select v-model="form.paymentType" placeholder="" @change="calcBillFee">
|
||||
<el-select v-model="form.paymentType" placeholder="" @change="onPaymentTypeChange()">
|
||||
<el-option
|
||||
v-for="dict in dict.type.emis_payment_type"
|
||||
:key="dict.value"
|
||||
@ -1505,7 +1505,7 @@ export default {
|
||||
newValue: {
|
||||
handler (newVa, oldValue) {
|
||||
this.form=this.newValue;
|
||||
this.form.blSpecialQuote = Number(this.newValue.blSpecialQuote);
|
||||
// this.form.blSpecialQuote = Number(this.newValue.blSpecialQuote);
|
||||
console.log("====>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();
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user