From ecb8a325ac853df28461fb004677ca58d1fcd1bc Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Mon, 28 Jul 2025 09:47:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B6=E6=AC=BE=E6=98=8E=E7=BB=86=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2-=E5=AF=BC=E5=87=BA-=E6=94=AF=E4=BB=98=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisSettlePayRecord/index.vue | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/views/emis/emisSettlePayRecord/index.vue b/src/views/emis/emisSettlePayRecord/index.vue index b90b903f..887378f7 100644 --- a/src/views/emis/emisSettlePayRecord/index.vue +++ b/src/views/emis/emisSettlePayRecord/index.vue @@ -62,8 +62,9 @@ - - + + + @@ -781,14 +782,16 @@ export default { return this.selectDictLabel(this.dict.type.emis_payment_status,paymentStatus); } - if(j == 'payStatus'){ - let payStatus = v['payStatus'] - if (payStatus == 0) { - return '待支付'; + if (j == 'payStatus') { + let payStatus = v['payStatus'] + if (payStatus == 0 || payStatus == null) { + return '未支付'; } else if (payStatus == 1) { - return '支付成功'; + return '支付中'; } else if (payStatus == 2) { + return '支付成功'; + } else if (payStatus == 3) { return '支付失败'; } }