33 lines
449 B
TypeScript
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',
|
|
},
|
|
];
|