wms-antdvue/.svn/pristine/84/8404addb6f36f784dff6d8219ee2401a33da4306.svn-base
2024-11-07 16:33:03 +08:00

53 lines
809 B
Plaintext

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