diff --git a/src/views/emis/emisSettlePayRecord/panel/PayRecordInput.vue b/src/views/emis/emisSettlePayRecord/panel/PayRecordInput.vue index 29648db3..503e0edc 100644 --- a/src/views/emis/emisSettlePayRecord/panel/PayRecordInput.vue +++ b/src/views/emis/emisSettlePayRecord/panel/PayRecordInput.vue @@ -553,7 +553,12 @@ export default { relItem.payMoney=hasPayMap[itemSubBill.billNo]; } } - + else{ + if(this.form.recType==2){ + relItem.hasApplyFee=0; + relItem.payMoney=0 + } + } if(relItem.payMoney>0){ this.form.payRelList.push(relItem); @@ -611,6 +616,13 @@ export default { relItem.payMoney=hasPayMap[itemSubBill.billNo]; } } + else{ + if(this.form.recType==2){ + relItem.hasApplyFee=0; + relItem.payMoney=0 + } + } + if(relItem.payMoney>0){ this.form.payRelList.push(relItem); }