/*
 * @Author: wfl
 * @LastEditors: wfl
 * @description:
 * @updateInfo:
 * @Date: 2022-09-02 17:17:35
 * @LastEditTime: 2022-09-07 13:45:48
 */
export const tableKeys: any[] = [
  {
    title: '序号',
    dataIndex: 'order',
    width: 50,
    align: 'center',
  },
  {
    title: '姓名',
    dataIndex: 'name',
    width: 100,
  },
  {
    title: '用户名',
    dataIndex: 'username',
    ellipsis: true,
    width: 80,
  },
  {
    title: '昵称',
    dataIndex: 'nickname',
    ellipsis: true,
    width: 100,
  },
  {
    title: '性别',
    width: 50,
    align: 'center',
    dataIndex: 'sex',
  },
  {
    title: '联系电话',
    dataIndex: 'phone',
    ellipsis: true,
    width: 110,
  },
  {
    title: '邮箱',
    ellipsis: true,
    dataIndex: 'email',
    width: 140,
  },
  {
    title: '部门',
    ellipsis: true,
    dataIndex: 'dept',
    width: 110,
  },
  {
    title: '岗位',
    width: 110,
    ellipsis: true,
    dataIndex: 'post',
  },
  {
    title: '角色',
    ellipsis: true,
    width: 110,
    dataIndex: 'role',
  },
  {
    title: '头像',
    align: 'center',
    dataIndex: 'avatar',
    width: 80,
  },
  {
    title: '账户状态',
    dataIndex: 'locked',
    align: 'center',
    width: 60,
  },
  {
    title: '操作',
    dataIndex: 'operation',
    fixed: 'right',
    width: 160,
  },
];
