Merge pull request 'master-客户管理' (#49) from master-客户管理 into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-frontend/pulls/49
This commit is contained in:
wuteng 2025-07-31 19:05:58 +08:00
commit b19d0e3a7a
2 changed files with 17 additions and 4 deletions

View File

@ -136,7 +136,7 @@
border
size="mini"
storageName="emisWarehouseInList_main"
storageName="emisWarehouseInList_main1"
ref="refTable"

View File

@ -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>