lyh
2026-01-19 f60f18de3fa04a8f8ade71da232fed4bcef3766a
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
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');
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}
      ]}
  ]
}]