/*
 * @Author: mhj
 * @LastEditors: wfl
 * @Date: 2022-08-19 11:24:51
 * @LastEditTime: 2022-09-01 10:30:50
 */
export const categoryKeys: any[] = [
  {
    title: '字典名称',
    dataIndex: 'name',
  },
  {
    title: '字典类型',
    dataIndex: 'type',
    width: 100,
    align: 'center',
  },
  {
    title: '备注信息',
    dataIndex: 'remark',
  },
  {
    title: '是否显示',
    dataIndex: 'visible',
    width: 80,
  },
  {
    title: '操作',
    dataIndex: '_1',
    width: 100,
  },
];

export const contentKeys: any[] = [
  {
    title: '字典项名称',
    dataIndex: 'label',
    minWidth: 200,
  },
  {
    title: '操作',
    dataIndex: '_1',
    width: 200,
  },
];
