This commit is contained in:
PC-202306242200\Administrator
2024-10-10 17:50:09 +08:00
parent 806d745daa
commit d34b0a8615
18 changed files with 37 additions and 10 deletions

View File

@@ -53,6 +53,14 @@ const LogTableList: React.FC = () => {
title: '用户信息',
dataIndex: 'userId',
valueType: 'text',
render: (_: any, record: any) => {
return <div>
<div>ID:{record?.userId}</div>
<div>{record?.userName}</div>
<div>{record?.phone}</div>
<div>{record?.level}</div>
</div>
},
renderFormItem: (
_,
{ type, defaultRender, formItemProps, fieldProps, ...rest },
@@ -115,6 +123,18 @@ const LogTableList: React.FC = () => {
valueType: 'text',
search: false,
},
{
title: '手续费',
dataIndex: 'commission',
valueType: 'text',
search: false,
},
{
title: '到账积分',
dataIndex: 'inToAccountPoints',
valueType: 'text',
search: false,
},
{
title: '收益',
dataIndex: 'points1',