四好公路
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.

26 lines
708 B

3 years ago
'use strict';
3 years ago
import { UserManage, Authority } from './containers';
3 years ago
export default [{
type: 'inner',
route: {
path: '/organization',
key: 'organization',
3 years ago
breadcrumb: '组织管理',
3 years ago
menuSelectKeys: ['userManage'],
menuOpenKeys: ['organization'],
childRoutes: [{
path: '/user',
key: 'userManage',
menuSelectKeys: ['userManage'],
component: UserManage,
breadcrumb: '用户管理',
3 years ago
}, {
path: '/authority',
key: 'authority',
component: Authority,
menuSelectKeys: ['authority'],
breadcrumb: '权限配置',
3 years ago
}]
}
}];