账号管理列表加字段
parent
e2ed81cd24
commit
7ec2f5adf7
|
|
@ -24,27 +24,28 @@ export const deptMap = (() => {
|
||||||
|
|
||||||
export const columns: BasicColumn[] = [
|
export const columns: BasicColumn[] = [
|
||||||
{
|
{
|
||||||
title: '用户名',
|
title: '账号',
|
||||||
dataIndex: 'account',
|
dataIndex: 'account',
|
||||||
width: 120,
|
width: 120,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '昵称',
|
title: '姓名',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
width: 120,
|
width: 120,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '所属部门',
|
||||||
|
dataIndex: 'department',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '角色',
|
||||||
|
dataIndex: 'role',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '创建时间',
|
title: '创建时间',
|
||||||
dataIndex: 'createTime',
|
dataIndex: 'createTime',
|
||||||
width: 180,
|
width: 180,
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// title: '所属部门',
|
|
||||||
// dataIndex: 'organizations',
|
|
||||||
// // customRender: ({ value }) => {
|
|
||||||
// // return deptMap[value];
|
|
||||||
// // },
|
|
||||||
// },
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
export const searchFormSchema: FormSchema[] = [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue