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