diff --git a/packages/party/AppPartyScoreFlow/psfList.vue b/packages/party/AppPartyScoreFlow/psfList.vue index 75fc8de6..20198575 100644 --- a/packages/party/AppPartyScoreFlow/psfList.vue +++ b/packages/party/AppPartyScoreFlow/psfList.vue @@ -70,7 +70,7 @@ export default { {label: "调整说明", prop: "remark", align: "center"}, {label: "事件", prop: "createTime"}, {label: "类型", prop: "integralType", align: "center", dict: "partyIntegralType"}, - {label: "积分", prop: "residualIntegral", align: "center"}, + {label: "积分", prop: "integral", align: "center"}, {slot: "options"} ] }, @@ -102,7 +102,10 @@ export default { params: {...this.page, ...this.search} }).then(res => { if (res?.data) { - this.tableData = res.data?.records + this.tableData = res.data?.records?.map(e => ({ + ...e, + integral: (e.integralType == 0 ? "-" : '+') + e.integral + })) this.page.total = res.data.total } })