|
@@ -98,14 +98,15 @@ export function useHandle(onFetch: () => void) {
|
|
|
|
|
|
const [isReseting, onResetClick] = useResetPassword();
|
|
|
const columns: ColumnsType<UserListData> = [
|
|
|
- {title: '用户编号', dataIndex: 'code', key: 'code', width: SMALL_TABLE_WIDTH},
|
|
|
+ {title: '用户编号', dataIndex: 'code', key: 'code', width: NORMAL_TABLE_WIDTH},
|
|
|
{title: '用户名称', dataIndex: 'userName', key: 'userName', width: SMALL_TABLE_WIDTH},
|
|
|
- {title: '真实姓名', dataIndex: 'realName', key: 'realName', width: SMALL_TABLE_WIDTH},
|
|
|
+ {title: '部门', dataIndex: 'department', key: 'department', width: SMALL_TABLE_WIDTH},
|
|
|
+ {title: '角色', dataIndex: 'role', key: 'role', width: NORMAL_TABLE_WIDTH},
|
|
|
{title: '邮箱', dataIndex: 'email', key: 'email', width: NORMAL_TABLE_WIDTH},
|
|
|
{title: '电话', dataIndex: 'landline', key: 'landline', width: NORMAL_TABLE_WIDTH},
|
|
|
{title: '手机', dataIndex: 'phone', key: 'phone', width: NORMAL_TABLE_WIDTH},
|
|
|
- {title: '部门', dataIndex: 'department', key: 'department', width: SMALL_TABLE_WIDTH},
|
|
|
- {title: '角色', dataIndex: 'role', key: 'role', width: NORMAL_TABLE_WIDTH},
|
|
|
+ {title: '最后修改人', dataIndex: 'modifyUser', key: 'modifyUser', width: NORMAL_TABLE_WIDTH},
|
|
|
+ {title: '最后修改时间', dataIndex: 'modifyTime', key: 'modifyTime', width: MIDDLE_TABLE_WIDTH},
|
|
|
{title: '创建时间', dataIndex: 'createTime', key: 'createTime', width: MIDDLE_TABLE_WIDTH},
|
|
|
{
|
|
|
title: '操作',
|