From 545d3a5024f54976a6685a30c7c1a4107fd5d563 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Thu, 19 Dec 2024 17:50:05 +0800 Subject: [PATCH] fix(mall): 修复会员兑换碳币权限及数据展示问题- 修改会员兑换碳币权限判断逻辑,使用 withdrawState 替代 changeState - 调整 ApiRunDataVo 中 score 和 realScore 字段含义,确保数据展示正确 - 更新 buyVipList.html 中状态颜色,以更直观地显示不同状态 --- src/main/resources/templates/febs/views/modules/runVip/sellVipList.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/runVip/sellVipList.html b/src/main/resources/templates/febs/views/modules/runVip/sellVipList.html index 18235a7..27614f5 100644 --- a/src/main/resources/templates/febs/views/modules/runVip/sellVipList.html +++ b/src/main/resources/templates/febs/views/modules/runVip/sellVipList.html @@ -142,8 +142,8 @@ {field: 'account', title: '账号', minWidth: 150,align:'center'}, {field: 'type', title: '链', minWidth: 100,align:'center'}, {field: 'name', title: '提现地址', minWidth: 100,align:'center'}, - {field: 'amount', title: '金额', minWidth: 100,align:'center',totalRow: '{{= parseInt(d.amount) }}'}, - {field: 'amountFee', title: '手续费', minWidth: 100,align:'center',totalRow: '{{= parseInt(d.amount) }}'}, + {field: 'amount', title: '金额', minWidth: 100,align:'center', totalRow:true}, + {field: 'amountFee', title: '手续费', minWidth: 100,align:'center', totalRow:true}, {title: '状态', templet: '#statusType', minWidth: 100,align:'center'}, {field: 'createdTime', title: '创建时间', minWidth: 180,align:'center'}, {title: '操作', toolbar: '#commissionOption', minWidth: 200} -- Gitblit v1.9.1