|
@@ -56,6 +56,13 @@ router.beforeEach(async (to, from, next) => {
|
|
|
const menusArray = parseMenuItem(nd)
|
|
|
const treeMenu = listToTree(menusArray, 'up_auth_id', 'auth_id')
|
|
|
const dataMenu = _.unionBy(treeMenu, 'auth_id')
|
|
|
+ const ndatamenu = dataMenu.filter(item => item.auth_id == 212)
|
|
|
+ if (ndatamenu?.length) {
|
|
|
+ const nitemchild = ndatamenu[0].children || []
|
|
|
+ nitemchild.map(item => {
|
|
|
+ item.meta.keepAlive = true
|
|
|
+ })
|
|
|
+ }
|
|
|
const menus = parseMenu(dataMenu)
|
|
|
|
|
|
if (PLATFROM_CONFIG.hasStaticRoutes) {
|
|
@@ -89,11 +96,12 @@ router.beforeEach(async (to, from, next) => {
|
|
|
}
|
|
|
})
|
|
|
|
|
|
-function parseMenuItem (data) {
|
|
|
+function parseMenuItem (arr) {
|
|
|
const menus = []
|
|
|
+ const data = _.cloneDeep(arr)
|
|
|
data.map(item => {
|
|
|
if (item.auth_type == 1) {
|
|
|
- menus.push({
|
|
|
+ const routeParm = {
|
|
|
auth_id: item.auth_id,
|
|
|
up_auth_id: item.up_auth_id,
|
|
|
path: item.route_info,
|
|
@@ -102,13 +110,15 @@ function parseMenuItem (data) {
|
|
|
title: item.auth_name,
|
|
|
elSvgIcon: item.show_icon ?? 'Fold',
|
|
|
show_index: item.show_index,
|
|
|
- qid: item.queryTemplateID
|
|
|
+ qid: item.queryTemplateID,
|
|
|
+ keepAlive: true
|
|
|
},
|
|
|
component: Layout,
|
|
|
hidden: !item.is_show,
|
|
|
- })
|
|
|
+ }
|
|
|
+ menus.push(routeParm)
|
|
|
} else if (item.auth_type == 2) {
|
|
|
- menus.push({
|
|
|
+ const routeParm = {
|
|
|
auth_id: item.auth_id,
|
|
|
up_auth_id: item.up_auth_id,
|
|
|
path: item.route_info,
|
|
@@ -119,13 +129,16 @@ function parseMenuItem (data) {
|
|
|
show_index: item.show_index,
|
|
|
qid: item.queryTemplateID,
|
|
|
auth_id: item.auth_id,
|
|
|
- up_auth_id: item.up_auth_id,
|
|
|
- keepAlive: item.auth_ident == 'search_page' ? true : false
|
|
|
+ up_auth_id: item.up_auth_id
|
|
|
},
|
|
|
component: resolve => require(['@/views' + item.file_link], resolve),
|
|
|
// component: () => import('./views/table/index.vue'),
|
|
|
hidden: !item.is_show,
|
|
|
- })
|
|
|
+ }
|
|
|
+ if (item.auth_ident == 'search_page') {
|
|
|
+ routeParm.meta['keepAlive'] = true
|
|
|
+ }
|
|
|
+ menus.push(routeParm)
|
|
|
}
|
|
|
})
|
|
|
|