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:
commit
b19d0e3a7a
@ -136,7 +136,7 @@
|
|||||||
border
|
border
|
||||||
size="mini"
|
size="mini"
|
||||||
|
|
||||||
storageName="emisWarehouseInList_main"
|
storageName="emisWarehouseInList_main1"
|
||||||
|
|
||||||
ref="refTable"
|
ref="refTable"
|
||||||
|
|
||||||
|
|||||||
@ -347,7 +347,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="14">
|
<el-col :span="14">
|
||||||
<el-form-item :label="$t('支付方式')" prop="paymentType" >
|
<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
|
<el-option
|
||||||
v-for="dict in dict.type.emis_payment_type"
|
v-for="dict in dict.type.emis_payment_type"
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
@ -1505,7 +1505,7 @@ export default {
|
|||||||
newValue: {
|
newValue: {
|
||||||
handler (newVa, oldValue) {
|
handler (newVa, oldValue) {
|
||||||
this.form=this.newValue;
|
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==>",this.form);
|
||||||
|
|
||||||
console.log("====>newValue this.form.packType==>",this.form.packType);
|
console.log("====>newValue this.form.packType==>",this.form.packType);
|
||||||
@ -2195,7 +2195,20 @@ export default {
|
|||||||
if(this.form.reciever){
|
if(this.form.reciever){
|
||||||
this.recieverCountryCode = this.form.reciever.country;
|
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>
|
</script>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user