wms-antdvue/.svn/pristine/46/46f92d8ad6f2e5c7b27c954480d72cdf77fb1cc9.svn-base
2024-11-07 16:33:03 +08:00

34 lines
503 B
Plaintext

import { h } from 'vue';
import { Tag } from 'ant-design-vue';
export const columns = [
{
title:'ID',
dataIndex: 'id',
fixed:'left'
},
{
title: '标签名称',
dataIndex: 'name',
},
{
title: '排序',
dataIndex: 'sort',
},
{
title: '创建人',
dataIndex: 'createUser',
},
{
title: '创建时间',
dataIndex: 'createTime',
},
{
title: '操作',
fixed:'right',
dataIndex: 'action',
key: 'action',
width: 200,
},
];