feat(card-info): 添加充值限制金额和次数列

- 在卡片信息表格中新增了充值限制金额和充值限制次数两列
- 这两列数据分别对应后端返回的 maxAmountLimit 和 maxCountLimit 字段
This commit is contained in:
danial
2025-02-04 21:33:24 +08:00
parent 29812a4bb4
commit 21a7c44568

View File

@@ -234,6 +234,18 @@ const columns: TableColumnData[] = [
ellipsis: true,
tooltip: true
},
{
title: '充值限制金额',
dataIndex: 'maxAmountLimit',
ellipsis: true,
tooltip: true
},
{
title: '充值限制次数',
dataIndex: 'maxCountLimit',
ellipsis: true,
tooltip: true
},
{
title: '上传人',
dataIndex: 'uploadUser.username',