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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
| /* Layout */
| import Layout from '@/layout';
|
|
| export default [
| // {
| // path: '/login',
| // component: () => import('@/views/login/index'),
| // hidden: true
| // },
| {
| path: '/login',
| component: () => import('@/views/login/index'),
| hidden: true
| },
| {
| id: 2,
| parentId: 0,
| path: '/',
| component: Layout,
| redirect: '/management',
| name: '企业管理',
| meta: { title: '企业管理', icon: '首页' },
| children: [
| {
| id: 1,
| parentId: 0,
| path: 'management',
| name: '企业管理',
| component: () => import('@/views/management/index'),
| meta: { title: '企业管理', icon: '' }
| },
| {
| id: 10,
| parentId: 0,
| path: 'managementDetails',
| name: '企业管理详情',
| hidden: true,
| component: () => import('@/views/managementDetails/index'),
| meta: { title: '企业管理详情', icon: '' }
| }
| ]
| },
| {
| id: 85,
| parentId: 0,
| component: Layout,
| path: '/userpermisson',
| name: '权限管理',
| meta: { title: '权限管理', icon: '权限管理' },
| children: [
| {
| id: 86,
| parentId: 85,
| path: 'user',
| name: '用户管理',
| component: () => import('@/views/user/index'),
| meta: { title: '用户管理', icon: '' }
| },
| // {
| // id: 87,
| // parentId: 85,
| // path: 'role',
| // name: '角色管理',
| // component: () => import('@/views/role/index'),
| // meta: { title: '角色管理', icon: '' }
| // },
| //
| // {
| // id: 88,
| // parentId: 85,
| // path: 'permisson',
| // name: '权限点管理',
| // component: () => import('@/views/permisson/index'),
| // meta: { title: '权限点管理', icon: '' },
| // hidden: true
| // }
| ]
| },
|
| // {
| // id: 89,
| // parentId: 0,
| // path: '/datamanage',
| // component: Layout,
| // name: '数据管理',
| // meta: { title: '数据管理', icon: '数据管理' },
| // children: [
| // {
| // id: 90,
| // parentId: 89,
| // path: 'datagroup',
| // name: '数据组',
| // component: () => import('@/views/datagroup/index'),
| // meta: { title: '数据组', icon: '' }
| // },
| // {
| // id: 91,
| // parentId: 89,
| // path: 'datadictionary',
| // name: '数据字典',
| // component: () => import('@/views/datadictionary/index'),
| // meta: { title: '数据字典', icon: '' }
| // }
| // ]
| // },
| ];
|
|