KKSU
2025-02-13 951c94ad11acdfdd8d174fe0840a9c11d55f4cc7
feat(runVip): 添加线上充值字段并更新相关页面和数据映射

- 在 buyVipList.html 中添加线上充值列,用于显示线上充值金额
- 在 MallChargeMapper.xml 中添加 amount_real 字段映射,确保数据正确获取
2 files modified
2 ■■■■■ changed files
src/main/resources/mapper/modules/MallChargeMapper.xml 1 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/runVip/buyVipList.html 1 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MallChargeMapper.xml
@@ -26,6 +26,7 @@
        a.state state,
        a.address address,
        a.amount amount,
        IFNULL(a.amount_real, 0) amountReal,
        a.type type,
        a.fail_time failTime,
        a.sys_address sysAddress,
src/main/resources/templates/febs/views/modules/runVip/buyVipList.html
@@ -135,6 +135,7 @@
                    {field: 'account', title: '账号', minWidth: 150,align:'center'},
                    {field: 'vipName', title: '会员名称', minWidth: 100,align:'center'},
                    {field: 'amount', title: '金额', minWidth: 100,align:'center',totalRow: '{{= parseInt(d.amount) }}'},
                    {field: 'amountReal', title: '线上充值', minWidth: 100,align:'center',totalRow: '{{= parseInt(d.amountReal) }}'},
                    {field: 'type', title: '链', minWidth: 100,align:'center'},
                    {field: 'address', title: '地址', minWidth: 100,align:'center'},
                    {title: '状态', templet: '#statesType', minWidth: 100,align:'center'},