45 lines
637 B
TypeScript
45 lines
637 B
TypeScript
import { h } from 'vue';
|
|
import { NTag } from 'naive-ui';
|
|
export const columns = [
|
|
{
|
|
type: 'selection',
|
|
width: 50,
|
|
fixed: 'left',
|
|
},
|
|
{
|
|
title: '字典名称',
|
|
key: 'name',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '字典编码',
|
|
key: 'dictCode',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '字典项值',
|
|
key: 'value',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '排序',
|
|
key: 'sort',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '备注',
|
|
key: 'note',
|
|
width: 200,
|
|
},
|
|
{
|
|
title: '创建人',
|
|
key: 'createUser',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
key: 'createTime',
|
|
width: 180,
|
|
},
|
|
];
|