You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.0 KiB
56 lines
2.0 KiB
/**
|
|
* 本文件用于配置菜单,
|
|
* 单个菜单项配置属性包括:
|
|
* type: 类型, 可选项:
|
|
* GROUP: 菜单组
|
|
* ROUTE: 路由菜单项
|
|
* JAVASCRIPT: Javascript 菜单项
|
|
* URL: url 菜单项
|
|
* SEPERATOR: 菜单分隔符
|
|
* order: 排序号
|
|
* parentId: 父菜单组 ID
|
|
* id: 菜单项 ID
|
|
* titleI18nKey: 菜单项多语言消息 KEY
|
|
* icon: 菜单项图标名称
|
|
* routeName: 路由名称
|
|
* routeQuery: 路由查询参数, 数据类型为 Map, 示例 "routeQuery":{"key1":"value1","key2":"value2"}
|
|
*/
|
|
|
|
[
|
|
/*低代码平台*/
|
|
{ "type": "GROUP", "order": 9000, "id": "menu.lcdp", "titleI18nKey": "menu.lcdp", "icon": "bi-boxes" },
|
|
/*低代码平台/前端*/
|
|
{
|
|
"type": "ROUTE",
|
|
"order": 100,
|
|
"parentId": "menu.lcdp",
|
|
"id": "menu.lcdp.frontend",
|
|
"titleI18nKey": "menu.lcdp.frontend",
|
|
"icon": "bi-filetype-html",
|
|
"routeName": "route.lcdp.frontend"
|
|
},
|
|
/*低代码平台/主题*/
|
|
{
|
|
"type": "ROUTE",
|
|
"order": 200,
|
|
"parentId": "menu.lcdp",
|
|
"id": "menu.lcdp.theme",
|
|
"titleI18nKey": "menu.lcdp.theme",
|
|
"icon": "bi-palette",
|
|
"routeName": "route.lcdp.theme"
|
|
},
|
|
/*低代码平台/主题*/
|
|
{
|
|
"type": "ROUTE",
|
|
"order": 300,
|
|
"parentId": "menu.lcdp",
|
|
"id": "menu.lcdp.bpm",
|
|
"titleI18nKey": "menu.lcdp.bpm",
|
|
"icon": "bi-share",
|
|
"routeName": "route.lcdp.bpm"
|
|
},
|
|
/* 低代码管理/表单管理*/
|
|
{"type":"ROUTE", "order":600, "parentId":"menu.lcdp", "id":"menu.lcdp.form", "titleI18nKey":"menu.lcdp.form", "icon":"widgets", "routeName":"route.lcdp.form"},
|
|
/* 低代码管理/报表模板管理(Excel)*/
|
|
{"type":"ROUTE", "order":700, "parentId":"menu.lcdp", "id":"menu.lcdp.excel.template", "titleI18nKey":"menu.lcdp.excel.template", "icon":"view_list", "routeName":"route.lcdp.excel.template"}
|
|
]
|
|
|