41 lines
577 B
Plaintext
41 lines
577 B
Plaintext
import { h } from 'vue';
|
|
|
|
export const columns = [
|
|
{
|
|
title:'ID',
|
|
dataIndex: 'id',
|
|
fixed:'left'
|
|
},
|
|
{
|
|
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,
|
|
},
|
|
];
|