This commit is contained in:
PC-202306242200\Administrator
2024-09-13 14:54:13 +08:00
parent 0a04d528c2
commit acb3bae4a5
5 changed files with 11 additions and 4 deletions

View File

@@ -37,9 +37,16 @@ const LogTableList: React.FC = () => {
search: false,
},
{
title: '用户ID',
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>
},
renderFormItem: (
_,
{ type, defaultRender, formItemProps, fieldProps, ...rest },