84 lines
1.3 KiB
JavaScript
84 lines
1.3 KiB
JavaScript
/*
|
||
* 菜单表格列
|
||
*
|
||
* @Author: 1024创新实验室-主任:卓大
|
||
* @Date: 2022-05-12 19:46:11
|
||
* @Wechat: zhuda1024
|
||
* @Email: lab1024@163.com
|
||
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||
*/
|
||
import { ref } from 'vue';
|
||
export const columns = ref([
|
||
{
|
||
title: '名称',
|
||
dataIndex: 'menuName',
|
||
key: 'ID',
|
||
width: 200,
|
||
},
|
||
{
|
||
title: '类型',
|
||
dataIndex: 'menuType',
|
||
width: 80,
|
||
},
|
||
{
|
||
title: '图标',
|
||
dataIndex: 'icon',
|
||
width: 50,
|
||
},
|
||
{
|
||
title: '路径',
|
||
dataIndex: 'path',
|
||
ellipsis: true,
|
||
},
|
||
{
|
||
title: '组件',
|
||
dataIndex: 'component',
|
||
ellipsis: true,
|
||
},
|
||
{
|
||
title: '权限模式',
|
||
dataIndex: 'permsType',
|
||
width: 100,
|
||
},
|
||
{
|
||
title: '后端权限',
|
||
dataIndex: 'apiPerms',
|
||
ellipsis: true,
|
||
},
|
||
{
|
||
title: '前端权限',
|
||
dataIndex: 'webPerms',
|
||
ellipsis: true,
|
||
},
|
||
{
|
||
title: '外链',
|
||
dataIndex: 'frameFlag',
|
||
width: 45,
|
||
},
|
||
{
|
||
title: '缓存',
|
||
dataIndex: 'cacheFlag',
|
||
width: 45,
|
||
},
|
||
{
|
||
title: '显示',
|
||
dataIndex: 'visibleFlag',
|
||
width: 45,
|
||
},
|
||
{
|
||
title: '禁用',
|
||
dataIndex: 'disabledFlag',
|
||
width: 45,
|
||
},
|
||
{
|
||
title: '顺序',
|
||
dataIndex: 'sort',
|
||
width: 80,
|
||
},
|
||
{
|
||
title: '操作',
|
||
dataIndex: 'operate',
|
||
width: 100,
|
||
},
|
||
]);
|