From 02bd5982028af6e791dd0857f535a41aaf74679e Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期一, 10 二月 2025 13:14:32 +0800 Subject: [PATCH] 修改 --- src/views/specialOperationsPay/notCoalPay/components/addDialog.vue | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/specialOperationsPay/notCoalPay/components/addDialog.vue b/src/views/specialOperationsPay/notCoalPay/components/addDialog.vue index 1ba49ec..82a1f01 100644 --- a/src/views/specialOperationsPay/notCoalPay/components/addDialog.vue +++ b/src/views/specialOperationsPay/notCoalPay/components/addDialog.vue @@ -180,9 +180,15 @@ getNotCoalPayCategory({categoryType: type,districtCode: this.dataForm.districtCode?this.dataForm.districtCode:''}).then((res) => { if (res.code == 200) { if(type == 1){ - this.dealList = res.rows + this.dealList = res.rows.map(i=>{ + i.subjectName = i.subjectName + ' ('+ i.amount +'元)' + return i + }) }else{ - this.operationList = res.rows + this.operationList = res.rows.map(i=>{ + i.subjectName = i.subjectName + ' ('+ i.amount +'元)' + return i + }) } } }) -- Gitblit v1.9.2