账号管理列表加字段

dianlixunjian
刘妍 2024-06-28 11:11:03 +08:00
parent e2ed81cd24
commit 7ec2f5adf7
1 changed files with 10 additions and 9 deletions

View File

@ -24,27 +24,28 @@ export const deptMap = (() => {
export const columns: BasicColumn[] = [
{
title: '用户名',
title: '账号',
dataIndex: 'account',
width: 120,
},
{
title: '昵称',
title: '姓名',
dataIndex: 'name',
width: 120,
},
{
title: '所属部门',
dataIndex: 'department',
},
{
title: '角色',
dataIndex: 'role',
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
// {
// title: '所属部门',
// dataIndex: 'organizations',
// // customRender: ({ value }) => {
// // return deptMap[value];
// // },
// },
];
export const searchFormSchema: FormSchema[] = [