wms-antdvue/.svn/pristine/5d/5d8218964dd19da0f0d09ae90ef4808ff9c030be.svn-base
2024-11-07 16:33:03 +08:00

39 lines
586 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: 'sort',
width: 100,
},
{
title: '创建人',
dataIndex: 'createUser',
width: 100,
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
{
title: '操作',
fixed: 'right',
dataIndex: 'action',
key: 'action',
width: 200,
},
];