From 725e9bfc69ffbcef74bcd0f1eb87eaabb933c1c4 Mon Sep 17 00:00:00 2001 From: linfso Date: Wed, 30 Apr 2025 16:58:22 +0800 Subject: [PATCH] md --- .../emisSettlePayRecord/panel/PayRecordInput.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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); }