|
@@ -39,6 +39,7 @@ const authorityRoutes = {
|
|
|
children: [
|
|
|
{
|
|
|
path: '/',
|
|
|
+ meta: { title: '权限项管理', isPage: 'authority_page', keepAlive: true },
|
|
|
component: () => import('@/views/authorityManagement/components/authorityHome')
|
|
|
},
|
|
|
{
|
|
@@ -138,8 +139,8 @@ const accountRoutes = {
|
|
|
title: '账号管理',
|
|
|
icon: 'account',
|
|
|
imgstyle: 'ic_list_nav_account_default.png',
|
|
|
- imgstyleup: 'ic_list_nav_account_check.png'
|
|
|
- , keepAlive: true
|
|
|
+ imgstyleup: 'ic_list_nav_account_check.png',
|
|
|
+ keepAlive: true
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
@@ -155,10 +156,18 @@ const accountRoutes = {
|
|
|
// title: '账号管理',
|
|
|
// roles: ['account_page']
|
|
|
// },
|
|
|
+ meta: {
|
|
|
+ title: '账号管理',
|
|
|
+ keepAlive: true
|
|
|
+ },
|
|
|
children: [
|
|
|
{
|
|
|
path: '/account',
|
|
|
- component: () => import('@/views/accountManagement/components/accountHome')
|
|
|
+ component: () => import('@/views/accountManagement/components/accountHome'),
|
|
|
+ meta: {
|
|
|
+ title: '账号管理',
|
|
|
+ keepAlive: true
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
path: 'accountAdd',
|
|
@@ -174,8 +183,8 @@ const accountRoutes = {
|
|
|
component: () => import('@/views/accountManagement/components/accountEdit'),
|
|
|
meta: {
|
|
|
title: '编辑账号',
|
|
|
- doesAccountExist: true
|
|
|
- , keepAlive: true
|
|
|
+ doesAccountExist: true,
|
|
|
+ keepAlive: true
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -183,8 +192,8 @@ const accountRoutes = {
|
|
|
name: 'accountAuth',
|
|
|
component: () => import('@/views/accountManagement/components/accountAuth'),
|
|
|
meta: {
|
|
|
- title: '账号权限'
|
|
|
- , keepAlive: true
|
|
|
+ title: '账号权限',
|
|
|
+ keepAlive: true
|
|
|
}
|
|
|
}
|
|
|
]
|