import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { MenuManage } from '../../../entity/system/menu-manage' // 参数名称 参数类型编号 参数编号 参数值 配置环境 const columns = ref[]>([ { title: '数据字典类别名称', dataIndex: 'itemName' }, { title: '数据字典类别编号', dataIndex: 'itemCode' } ]) export default columns