import { h } from 'vue'; import { Tag } from 'ant-design-vue'; export const columns = [ { title: 'ID', dataIndex: 'id', width: 100, }, { title: '字典名称', dataIndex: 'name', }, { title: '字典编码', dataIndex: 'dictCode', }, { title: '字典项值', dataIndex: 'value', }, { title: '排序', dataIndex: 'sort', }, { title: '备注', dataIndex: 'note', }, { title: '创建人', dataIndex: 'createUser', }, { title: '创建时间', dataIndex: 'createTime', width: 180, }, { title: '操作', fixed:'right', dataIndex: 'action', key: 'action', width: 200, }, ];