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

40 lines
560 B
Plaintext

import { h } from 'vue';
export const columns = [
{
title:'ID',
dataIndex: 'id',
},
{
title: '角色名称',
dataIndex: 'name',
},
{
title: '角色编码',
dataIndex: 'code',
},
{
title: '排序',
dataIndex: 'sort',
},
{
title: '备注',
dataIndex: 'note',
},
{
title: '创建人',
dataIndex: 'createUser',
},
{
title: '创建时间',
dataIndex: 'createTime',
},
{
title: '操作',
fixed:'right',
dataIndex: 'action',
key: 'action',
width: 300,
},
];