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

44 lines
672 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: 'location',
width: 100,
},
{
title: '位置描述',
dataIndex: 'description',
width: 200,
},
{
title: '排序',
dataIndex: 'sort',
width: 100,
},
{
title: '创建人',
dataIndex: 'createUser',
width: 100,
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
{
title: '操作',
fixed: 'right',
dataIndex: 'action',
key: 'action',
width: 200,
},
];