45 lines
621 B
JavaScript
45 lines
621 B
JavaScript
|
// 搜索配置
|
||
|
const searchModelJson = [
|
||
|
|
||
|
]
|
||
|
// 页面操作按钮配置
|
||
|
const fucDataJson = [{
|
||
|
name: '导出',
|
||
|
type: 'danger',
|
||
|
icon: 'el-icon-position'
|
||
|
},
|
||
|
|
||
|
]
|
||
|
// 表头配置
|
||
|
const tableColumnJson = [
|
||
|
{
|
||
|
label: '角色编码',
|
||
|
prop: 'r_RoleCode',
|
||
|
tooltip: true,
|
||
|
// sortable:true
|
||
|
},
|
||
|
{
|
||
|
label: '角色名称',
|
||
|
prop: 'r_RoleName',
|
||
|
tooltip: true,
|
||
|
},
|
||
|
{
|
||
|
label: '顺序',
|
||
|
prop: 'r_Sort',
|
||
|
tooltip: true,
|
||
|
},
|
||
|
{
|
||
|
label: '角色描述',
|
||
|
prop: 'r_Description',
|
||
|
tooltip: true,
|
||
|
},
|
||
|
]
|
||
|
|
||
|
|
||
|
|
||
|
export default {
|
||
|
searchModelJson,
|
||
|
fucDataJson,
|
||
|
tableColumnJson,
|
||
|
}
|