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