1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| const SystemManager = () =>import('@/module/system/page/system_manager.vue');
| const SystemManagerShow = () =>import('@/module/system/page/system_manager_show.vue');
| const UserManager = () =>import('@/module/system/page/user_manager.vue');
| const RoleManager = () =>import('@/module/system/page/role_manager.vue');
| const DepartManager = () =>import('@/module/system/page/depart_manager.vue');
| const SingleDicManager = () =>import('@/module/system/page/single_dic_manager.vue');
| const MultipleDicManager = () =>import('@/module/system/page/multiple_dic_manager.vue');
| const MenuManager = () =>import('@/module/system/page/menu_manager.vue');
| const ObjManager = () =>import('@/module/system/page/obj_manager.vue');
| const BtnManager = () =>import('@/module/system/page/btn_manager.vue');
| const ncLogInfo = () => import('@/module/system/page/nc_log_info.vue');
| const DeviceCharactersInfo= () => import('@/module/system/page/nc_device_characters_info.vue');
| const DeviceManagementInfo = () => import('@/module/system/page/device_custom_type_management.vue');
| export default [{
| path: '/home/system',
| component: SystemManager,
| name: '系统管理',
| hidden: true,
| children: [
| { path: '/home/system/ucenter', name:'用户中心',component: SystemManagerShow,hidden:true,
| children: [
| { path: '/home/system/ucenter/user', name:'用户管理',component: UserManager,hidden:true},
| { path: '/home/system/ucenter/role', name:'角色管理',component: RoleManager,hidden:true}
| ]},
| { path: '/home/system/enterprise', name:'企业中心',component: SystemManagerShow,hidden:true,
| children: [
| { path: '/home/system/enterprise/depart', name:'部门管理',component: DepartManager,hidden:true}
| ]},
| { path: '/home/system/dictionary', name:'数据字典',component: SystemManagerShow,hidden:true,
| children: [
| { path: '/home/system/dictionary/single', name:'单级字典',component: SingleDicManager,hidden:true},
| { path: '/home/system/dictionary/multiple', name:'多级字典',component: MultipleDicManager,hidden:true}
| ]},
| { path: '/home/system/resource', name:'资源管理',component: SystemManagerShow,hidden:true,
| children: [
| { path: '/home/system/resource/menu', name:'菜单管理',component: MenuManager,hidden:true},
| { path: '/home/system/resource/obj', name:'对象管理',component: ObjManager,hidden:true},
| { path: '/home/system/resource/btn', name:'按钮管理',component: BtnManager,hidden:true},
| { path: '/home/system/resource/nclog', name:'日志管理',component: ncLogInfo,hidden:true},
| { path: '/home/system/resource/characters', name:'设备特殊字符管理',component: DeviceCharactersInfo,hidden:true},
| { path: '/home/system/resource/management', name:'设备类管理',component: DeviceManagementInfo,hidden:true},
| ]}
| ]
| }]
|
|