diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationFormPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationFormPanel.vue index 48615be4..62294993 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationFormPanel.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationFormPanel.vue @@ -4,7 +4,7 @@ class="overflowhidden"> - + @@ -31,9 +31,9 @@ - + + value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择交易时间" style="width:100%"> @@ -164,6 +164,9 @@ export default { form: {}, rules: { + picUrl: [ + { required: true, message: "请上传图片", trigger: ["blur", "change"] }, + ], payType: [ { required: true, message: "支付方式不能为空", trigger: ["blur", "change"] }, ], diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue index 55cde50d..e30b95cc 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue @@ -73,17 +73,22 @@ - + - - - + + - - + + + + + + diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue index 8363b989..56b2c88d 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue @@ -77,19 +77,24 @@ - + + + + - - + + - - + + - + diff --git a/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceHasOpenPanel.vue b/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceHasOpenPanel.vue index e0ff10e3..9be01926 100644 --- a/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceHasOpenPanel.vue +++ b/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceHasOpenPanel.vue @@ -48,6 +48,7 @@ + @@ -211,13 +212,13 @@ 审核不通过 - + @@ -225,6 +226,7 @@ + - + @@ -217,6 +217,7 @@ + @@ -243,12 +244,12 @@
- 确 定 + 确 定 取 消
-
+
@@ -445,9 +446,9 @@ export default { this.form.payInvoiceRelList.push({applySeqNo:itemBill.applySeqNo}); } - totalFee=origFee; + // totalFee=origFee; - this.form.payMoney = totalFee.toFixed(2); + // this.form.payMoney = totalFee.toFixed(2); this.form.settleBillNo=settleBillNoListStr; @@ -460,7 +461,6 @@ export default { hasPayMap[item.billNo] = item.sumMoney } } - console.log("===>hasPayMap==>",hasPayMap); let qParam={ applySeqNo: applySeqNoListStr, @@ -470,14 +470,12 @@ export default { // 查询子账单 let res=await listEmisSettleInvoiceRel(qParam); - console.log("===>=res==>",res) if(res.code==200){ res.rows.forEach(itemSubBill=>{ let relItem={...itemSubBill}; relItem.openMoney=itemSubBill.money; relItem.payMoney=itemSubBill.money; relItem.hasApplyFee=0; - console.log("===>=hasPayMap1111==>",hasPayMap[itemSubBill.billNo]) if(relItem.waybillDetail.paymentType == 2 || relItem.waybillDetail.paymentType == 4 || relItem.waybillDetail.paymentType == 5){ that.form.settleType='2'; @@ -490,15 +488,17 @@ export default { if(this.form.recType==1){ relItem.hasApplyFee=hasPayMap[itemSubBill.billNo]; // relItem.payMoney=itemSubBill.money-hasPayMap[itemSubBill.billNo]; + relItem.payMoney=itemSubBill.money-itemSubBill.recedMoney; } } - + if(relItem.payMoney>0){ + totalFee = Number(totalFee) + Number(relItem.payMoney); this.form.payRelList.push(relItem); } }); - } + this.form.payMoney = totalFee.toFixed(2); // this.handleCalcFeeItem(); }else{