wms-elevue/src/views/content/layoutItem/columns.ts
2024-08-22 14:42:51 +08:00

33 lines
449 B
TypeScript

import { h } from 'vue';
import { ElTag } from 'element-plus';
export const columns = [
{
type: 'selection',
},
{
label: 'ID',
prop: 'id'
},
{
label: '位置编号',
prop: 'location',
},
{
label: '位置描述',
prop: 'description',
},
{
label: '排序',
prop: 'sort',
},
{
label: '创建人',
prop: 'createUser',
},
{
label: '创建时间',
prop: 'createTime',
},
];