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.
32 lines
856 B
32 lines
856 B
'use strict';
|
|
import { UserManage, AdminiSter } from './containers';
|
|
import Authority from './containers/authority';
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/organization',
|
|
key: 'organization',
|
|
breadcrumb: '授权管理',
|
|
menuSelectKeys: ['userManage'],
|
|
menuOpenKeys: ['organization'],
|
|
childRoutes: [{
|
|
path: '/user',
|
|
key: 'userManage',
|
|
menuSelectKeys: ['userManage'],
|
|
component: UserManage,
|
|
breadcrumb: '用户管理',
|
|
authCode: 'USERMANAGE'
|
|
|
|
},
|
|
{
|
|
path: '/authority',
|
|
key: 'userAuthority',
|
|
menuSelectKeys: ['userAuthority'],
|
|
component: Authority,
|
|
breadcrumb: '权限管理',
|
|
authCode: 'AUTHORIMANAGE'
|
|
}
|
|
|
|
]
|
|
}
|
|
}];
|