From 0a0229e373c091acc89e0214ed0e29bb4c8f1ac6 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Sat, 11 Apr 2026 17:18:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E8=B4=A6=E5=8D=95=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E3=80=81=E5=85=AC=E5=8F=B8=E5=BC=80=E7=A5=A8=E4=B8=BB?= =?UTF-8?q?=E4=BD=93=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../emisBaseInvoiceInfoForm.vue | 7 ++++ src/views/emis/emisBaseInvoiceInfo/index.vue | 1 + .../CustSettleBillQueryList.vue | 38 +++++++++++++++++-- 3 files changed, 43 insertions(+), 3 deletions(-) diff --git a/src/views/emis/emisBaseInvoiceInfo/emisBaseInvoiceInfoForm.vue b/src/views/emis/emisBaseInvoiceInfo/emisBaseInvoiceInfoForm.vue index c8bf6a3d..5d4481f8 100644 --- a/src/views/emis/emisBaseInvoiceInfo/emisBaseInvoiceInfoForm.vue +++ b/src/views/emis/emisBaseInvoiceInfo/emisBaseInvoiceInfoForm.vue @@ -37,6 +37,12 @@ + + + + + + + diff --git a/src/views/emis/emisSettleBill/CustSettleBillQueryList.vue b/src/views/emis/emisSettleBill/CustSettleBillQueryList.vue index 8870d934..a265c4e9 100644 --- a/src/views/emis/emisSettleBill/CustSettleBillQueryList.vue +++ b/src/views/emis/emisSettleBill/CustSettleBillQueryList.vue @@ -42,7 +42,7 @@ --> - + @@ -64,6 +64,12 @@ + + + + + + @@ -233,7 +239,11 @@ - + + + @@ -353,6 +363,8 @@ export default { daterangeCreateTime: [], // 更新站点时间范围 daterangeUpdateTime: [], + paymentStatus:[], + settleType:null, // 查询参数 queryParams: { pageNum: 1, @@ -410,7 +422,7 @@ export default { params:{ billCode:null, } - }, + } }; }, watch: { @@ -447,6 +459,11 @@ export default { this.queryParams.params.billCode=null; this.queryParams.settleBillNo=this.queryParams.queryCode; } + if(this.paymentStatus.length>0){ + this.queryParams.paymentStatus=this.paymentStatus.join(','); + }else{ + this.queryParams.paymentStatus=null; + } }, @@ -825,6 +842,21 @@ export default { if (j === 'paymentType') { return this.selectDictLabel(this.dict.type.emis_payment_type,v[j]); } + if (j === 'recUnPaid') { + return v['recMoney'] - v['recedMoney'] + v['refundMoney'] - v['satisfyMoney'] - v['allowanceMoney'] - v['deductionMoney'] - v['otherMoney']; + } + if (j ==='blConfirmSite') { + if(v[j] == 0){ + return '未确认'; + }else if(v[j] == 1){ + return '已确认'; + }else if(v[j] == 2){ + return '确认不出账'; + }else if(v[j] == 3){ + return '账单异常'; + } + } + return v[j] })) },