menuConfig.js
3.4 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
export default [
{
title:'首页',
key:'/home',
icon:'home',
isShow:true,
children:[
{
title:'首页',
key:'/home',
isShow:true,
}
]
},
// {
// title:'客户',
// key:'/home/customer',
// icon:'usergroup-add',
// children:[
// {
// title:'客户列表',
// key:'/home/customer/list'
// }
// ]
// },
// {
// title:'建议书',
// key:'/home/suggest',
// icon:'copy',
// children:[
// {
// title:'快速议书',
// key:'/home/suggest/fast'
// },
// {
// title:'建议书统计',
// key:'/home/suggest/count'
// },
// {
// title:'历史建议书',
// key:'/home/suggest/history'
// },
// {
// title:'轨迹跟踪',
// key:'/home/suggest/track'
// }
// ]
// },
// {
// title:'渠道',
// key:'/home/channel',
// icon:'global',
// children:[
// {
// title:'渠道管理',
// key:'/home/suggest/manage'
// }
// ]
// },
// {
// title:'产品',
// key:'/home/product',
// icon:'table',
// children:[
// {
// 'title':'保险条款',
// key:'/home/product/clause'
// },
// {
// 'title':'在售组合',
// key:'/home/product/onsellgroup'
// },
// {
// 'title':'云服务品库',
// key:'/home/product/libray'
// },
// {
// 'title':'组合产品推广',
// key:'/home/product/spread'
// },
// {
// 'title':'费率设置',
// key:'/home/product/rateconfig'
// },
// {
// 'title':'产品起停售',
// key:'/home/product/isOnsell'
// },
// ]
// },
{
title:'组织管理',
key:'/home/orgManage',
icon:'fork',
isShow:true,
children:[
{
title:'用户管理',
key:'/home/orgManage/user',
isShow:true,
},
{
title:'机构管理',
key:'/home/orgManage/orgIndex'
},
{
title:'组织人员',
key:'/home/orgManage/person'
},
]
},
{
title:"权限管理",
key:'/home/permission',
icon:'idcard',
children:[
{
title:'角色管理',
key:'/home/permission/role'
},
{
title:'客户端授权',
key:'/home/permission/client/empower'
},
{
title:'菜单管理',
key:'/home/permission/menuManage/menu'
},
]
},
{
title:"系统管理",
key:'/home/system',
icon:'setting',
children:[
{
title:'字典管理',
key:'/home/system/dictManage/dict'
},
]
},
{
title: "系统监控",
key: '/home/monitor',
icon: 'windows',
children: [
{
title: '访问日志',
key: '/home/monitor/accesslog'
},
{
title: '服务器监控',
key: '/home/monitor/sevMonitor'
},
{
title: '在线用户',
key: '/home/monitor/onlineUser'
},
{
title: '定时任务监控',
key: '/home/monitor/TaskMonitor/scheduledTaskMonitor'
}
]
},
{
title: '消息推送',
key: '/home/msgpush',
icon: 'message',
children: [
{
title: 'APP历史消息',
key: '/home/msgpush/appMsgHistory'
}
]
}
]