c1b532ad
梁保满
权限配置,路由基础设置
|
1
2
3
4
5
6
|
import Vue from "vue"
import Router from "vue-router"
import Login from "@/views/login/index"
import Layout from "@/views/layout/layout"
import HomeMain from "@/views/index/mainIndex"
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
7
|
|
c1b532ad
梁保满
权限配置,路由基础设置
|
8
9
|
// 不是必须加载的组件使用懒加载
const NotFound = () => import("@/views/page404")
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
10
11
|
const ExaminationPaper = () => import("@/views/examinationPaper/index")
const ExaminationPaperAdd = () => import("@/views/examinationPaper/add")
|
ce278878
梁保满
2-2 bugfix
|
12
|
const ExaminationPaperAddQs = () => import("@/views/examinationPaper/addQs")
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
13
14
|
const ExaminationPaperEdit = () => import("@/views/examinationPaper/edit")
const ExaminationPaperRecycle = () => import("@/views/examinationPaper/recycle")
|
e5e4a3e6
梁保满
v1.3
|
15
|
const ExaminationPaperArchiving = () => import("@/views/examinationPaper/archiving")
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
16
17
|
const Portrait = () => import("@/views/portrait/index")
const PortraitDetail = () => import("@/views/portrait/detail")
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
18
19
|
|
6dc19f47
梁保满
路由及文件名调整
|
20
|
const Ask = () => import("@/views/basic/ask/index")
|
d01c5799
梁保满
随堂问 报表开发
|
21
|
const AskList = () => import("@/views/basic/ask/list")
|
6dc19f47
梁保满
路由及文件名调整
|
22
23
24
|
const AskAnalysis = () => import("@/views/basic/ask/analysis")
const AskArchiving = () => import("@/views/basic/ask/archiving")
const Test = () => import("@/views/basic/test/index")
|
079cb4cf
梁保满
即时测导出
|
25
|
const TestList = () => import("@/views/basic/test/list")
|
6dc19f47
梁保满
路由及文件名调整
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
const TestAnalysis = () => import("@/views/basic/test/analysis")
const TestArchiving = () => import("@/views/basic/test/archiving")
const DataSync = () => import("@/views/basic/dataSync/index")
const Card = () => import("@/views/basic/card/index")
const Analysis = () => import("@/views/basic/analysis/index")
const Device = () => import("@/views/basic/device/index")
const DeviceLog = () => import("@/views/basic/device/log")
const Down = () => import("@/views/basic/down/index")
const DownClient = () => import("@/views/basic/down/client")
const SetUpAccount = () => import("@/views/basic/setUp/account")
const SetUpConglomerate = () => import("@/views/basic/setUp/conglomerate")
const SetUpSchool = () => import("@/views/basic/setUp/school")
const SetUpTeacher = () => import("@/views/basic/setUp/teacher")
const SetUpStudent = () => import("@/views/basic/setUp/student")
|
8ad80958
梁保满
教师学生管理,设备状态
|
40
|
const SetUpPersonalSetUpStudent = () => import("@/views/basic/setUp/PersonalStudent")
|
6dc19f47
梁保满
路由及文件名调整
|
41
|
const ArchivedClazz = () => import("@/views/basic/setUp/archivedClazz")
|
d01c5799
梁保满
随堂问 报表开发
|
42
|
const UserInfo = () => import("@/views/basic/userInfo/index")
|
77ebf04d
梁保满
个人版
|
43
|
|
6dc19f47
梁保满
路由及文件名调整
|
44
|
// 个人版
|
d01c5799
梁保满
随堂问 报表开发
|
45
46
47
48
49
50
51
52
53
54
55
|
// const PersonalAsk = () => import("@/views/personal/ask/index")
// const PersonalAskAnalysis = () => import("@/views/personal/ask/analysis")
// const PersonalArchiving = () => import("@/views/personal/ask/archiving")
// const PersonalTest = () => import("@/views/personal/test/index")
// const PersonalTestAnalysis = () => import("@/views/personal/test/analysis")
// const PersonalTestArchiving = () => import("@/views/personal/test/archiving")
// const PersonalDataSync = () => import("@/views/personal/dataSync/index")
// const PersonalSetUpStudent = () => import("@/views/personal/setUp/student")
// const PersonalDown = () => import("@/views/personal/down/index")
// const PersonalUserInfo = () => import("@/views/personal/userInfo/index")
|
77ebf04d
梁保满
个人版
|
56
|
|
6dc19f47
梁保满
路由及文件名调整
|
57
|
// 超级管理员
|
77ebf04d
梁保满
个人版
|
58
59
60
61
|
const AdminDevice = () => import("@/views/admin/device/index")
const AdminDeviceLog = () => import("@/views/admin/device/log")
const AdminAccount = () => import("@/views/admin/account/index")
const AdminClientVersion = () => import("@/views/admin/clientVersion/index")
|
c1b532ad
梁保满
权限配置,路由基础设置
|
62
63
|
/**
|
8ef22809
梁保满
软件下载页面添加.net环境下载
|
64
65
|
* v1.4
*/
|
6dc19f47
梁保满
路由及文件名调整
|
66
67
68
|
const SetUpClazz = () => import("@/views/basic/setUp/clazz")
const Archived = () => import("@/views/basic/setUp/archived")
const DeviceError = () => import("@/views/basic/device/error")
|
8ef22809
梁保满
软件下载页面添加.net环境下载
|
69
|
|
f45b3c05
LH_PC
云平台新UI界面
|
70
71
72
73
74
75
76
77
78
79
80
|
// v1.5 年级组长
const gradeAnalysis = () => import("@/views/basic/askTestQuestion/gradeAnalysis")
const gradeDetail = () => import("@/views/basic/askTestQuestion/gradeAnalysisDetail")
const askTestQuestion = () => import("@/views/basic/askTestQuestion/index")
const askTestDetail = () => import("@/views/basic/askTestQuestion/view")
const askTestUpdate = () => import("@/views/basic/askTestQuestion/update")
const askTestReport = () => import("@/views/basic/askTestQuestion/report")
const askTestReportDetail = () => import("@/views/basic/askTestQuestion/detail")
const askTestReportRecycle = () => import("@/views/basic/askTestQuestion/recycle")
|
8ef22809
梁保满
软件下载页面添加.net环境下载
|
81
|
/**
|
c1b532ad
梁保满
权限配置,路由基础设置
|
82
83
84
|
* 重写路由的push方法
*/
const routerPush = Router.prototype.push
|
236b1f0e
梁保满
周末-飞书bug
|
85
|
Router.prototype.push = function push(location) {
|
c1b532ad
梁保满
权限配置,路由基础设置
|
86
87
88
|
return routerPush.call(this, location).catch(error => error)
}
Vue.use(Router)
|
c1b532ad
梁保满
权限配置,路由基础设置
|
89
|
let defaultRouter = [
|
236b1f0e
梁保满
周末-飞书bug
|
90
91
|
{
path: "/",
|
c1b532ad
梁保满
权限配置,路由基础设置
|
92
93
94
95
96
97
98
99
100
101
102
103
104
|
redirect: "/index",
hidden: true,
children: []
},
{
path: "/login",
component: Login,
name: "登录",
hidden: true,
children: []
},
{
path: "/index",
|
f45b3c05
LH_PC
云平台新UI界面
|
105
106
107
|
iconImage: require("@/assets/images/aside/shouye-default.png"),
selectedIconImage: require("@/assets/images/aside/shouye-selected.png"),
// iconCls: "fa fa-home", // 图标样式class
|
4c4f7640
梁保满
路由表,路由前端文件
|
108
|
name: "应用首页",
|
c1b532ad
梁保满
权限配置,路由基础设置
|
109
110
111
112
113
114
115
116
117
118
119
120
|
component: Layout,
alone: true,
children: [
{
path: "/index",
iconCls: "fa fa-dashboard", // 图标样式class
name: "主页",
component: HomeMain,
children: []
}
]
},
|
e823fb79
阿宝
集团管理员
|
121
|
{
|
8ef22809
梁保满
软件下载页面添加.net环境下载
|
122
123
|
path: "/deviceError",
iconCls: "fa fa-home", // 图标样式class
|
f45b3c05
LH_PC
云平台新UI界面
|
124
|
name: "异常设备信息菜单",
|
8ef22809
梁保满
软件下载页面添加.net环境下载
|
125
126
127
128
129
130
131
132
133
134
135
136
|
component: Layout,
hidden: true,
children: [
{
path: "/deviceError",
name: "异常设备信息",
component: DeviceError,
hidden: true
}
]
},
{
|
77ebf04d
梁保满
个人版
|
137
138
|
path: "/userInfo",
iconCls: "fa fa-user", // 图标样式class
|
f45b3c05
LH_PC
云平台新UI界面
|
139
|
name: "个人信息菜单",
|
77ebf04d
梁保满
个人版
|
140
141
142
143
144
145
146
|
component: Layout,
hidden: true,
children: [
{
path: "/userInfo",
iconCls: "fa fa-user", // 图标样式class
name: "个人信息",
|
d01c5799
梁保满
随堂问 报表开发
|
147
|
component: UserInfo,
|
77ebf04d
梁保满
个人版
|
148
149
150
151
152
|
children: []
}
]
},
{
|
c1b532ad
梁保满
权限配置,路由基础设置
|
153
154
155
156
157
158
159
|
path: "/404",
component: NotFound,
name: "404",
hidden: true,
children: []
}
]
|
6dc19f47
梁保满
路由及文件名调整
|
160
|
//标准版路由表
|
e5e4a3e6
梁保满
v1.3
|
161
|
let addrouters = [
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
162
163
164
165
166
|
{
path: "/examinationPaper",
iconCls: "fa fa-file-text", // 图标样式class
name: "备题组卷",
component: Layout,
|
f45b3c05
LH_PC
云平台新UI界面
|
167
168
|
alone: false,
hidden: true,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
169
170
171
172
|
children: [
{
path: "/examinationPaper",
iconCls: "fa fa-file-text", // 图标样式class
|
e3b0e3e7
梁保满
季度时间格式调整
|
173
|
name: "examinationPaper",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
174
175
176
177
178
179
|
component: ExaminationPaper,
children: []
},
{
path: "/examinationPaperAdd",
iconCls: "", // 图标样式class
|
e3b0e3e7
梁保满
季度时间格式调整
|
180
|
name: "examinationPaperAdd",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
181
|
component: ExaminationPaperAdd,
|
236b1f0e
梁保满
周末-飞书bug
|
182
|
parent: "examinationPaper",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
183
184
185
|
children: []
},
{
|
ce278878
梁保满
2-2 bugfix
|
186
|
path: "/examinationPaperAddQs",
|
4c2f99b0
梁保满
修改组卷
|
187
|
iconCls: "", // 图标样式class
|
ce278878
梁保满
2-2 bugfix
|
188
189
|
name: "examinationPaperAddQs",
component: ExaminationPaperAddQs,
|
4c2f99b0
梁保满
修改组卷
|
190
191
192
193
|
parent: "examinationPaper",
children: []
},
{
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
194
195
196
197
|
path: "/examinationPaperEdit",
iconCls: "", // 图标样式class
name: "修改答题卡",
component: ExaminationPaperEdit,
|
236b1f0e
梁保满
周末-飞书bug
|
198
|
parent: "examinationPaper",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
199
200
201
202
203
|
children: []
},
{
path: "/examinationPaperRecycle",
iconCls: "", // 图标样式class
|
e5e4a3e6
梁保满
v1.3
|
204
|
name: "回收站答题卡",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
205
|
component: ExaminationPaperRecycle,
|
236b1f0e
梁保满
周末-飞书bug
|
206
|
parent: "examinationPaper",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
207
208
|
children: []
},
|
e5e4a3e6
梁保满
v1.3
|
209
210
211
212
213
214
215
216
217
|
{
path: "/examinationPaperArchiving",
iconCls: "", // 图标样式class
name: "已归档答题卡",
component: ExaminationPaperArchiving,
parent: "examinationPaper",
hidden: true,
children: []
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
218
219
220
|
]
},
{
|
f45b3c05
LH_PC
云平台新UI界面
|
221
222
223
|
path: "/testGrade",
iconImage: require("@/assets/images/aside/test-default.png"),
name: "即时测",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
224
|
component: Layout,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
225
226
|
children: [
{
|
f45b3c05
LH_PC
云平台新UI界面
|
227
228
229
230
231
232
|
path: "/testGradeReport",
iconImage: require("@/assets/images/aside/suitangwen-baobiao-default.png"),
selectedIconImage: require("@/assets/images/aside/suitangwen-baobiao-selected.png"),
name: '即时测报表',
demoRoles: ["ROLE_NIANJI"],
component: gradeAnalysis,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
233
|
children: []
|
f45b3c05
LH_PC
云平台新UI界面
|
234
235
236
237
238
239
|
}, {
path: "/testGradeReportDetail",
iconCls: "",
name: "testGradeReportDetail",
demoRoles: ["ROLE_NIANJI"],
component: gradeDetail,
|
e5e4a3e6
梁保满
v1.3
|
240
|
hidden: true,
|
e5e4a3e6
梁保满
v1.3
|
241
|
children: []
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
242
243
244
245
|
}
]
},
{
|
f45b3c05
LH_PC
云平台新UI界面
|
246
247
248
|
path: "/askTeacher",
iconImage: require("@/assets/images/aside/ask-default.png"),
name: "随堂问",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
249
|
component: Layout,
|
f45b3c05
LH_PC
云平台新UI界面
|
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
|
children: [{
path: "/askPreparationQuestions",
iconImage: require("@/assets/images/aside/paper-default.png"),
selectedIconImage: require("@/assets/images/aside/paper-selected.png"),
name: '备题',
demoRoles: ["ROLE_JIAOSHI"],
component: askTestQuestion,
children: []
}, {
path: "/askReport",
iconImage: require("@/assets/images/aside/suitangwen-baobiao-default.png"),
selectedIconImage: require("@/assets/images/aside/suitangwen-baobiao-selected.png"),
name: '报表',
demoRoles: ["ROLE_JIAOSHI", "ROLE_BANZHUREN"],
component: askTestReport,
children: []
}, {
path: "/askPreparationQuestionsDetail",
iconCls: "",
name: "askPreparationQuestionsDetail",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestDetail,
hidden: true,
children: []
}, {
path: "/askPreparationQuestionsUpdate",
iconCls: "",
name: "askPreparationQuestionsUpdate",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestUpdate,
hidden: true,
children: []
}, {
path: "/askReportDetail",
iconCls: "",
name: "askReportDetail",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestReportDetail,
hidden: true,
children: []
}, {
path: "/askPreparationQuestionsRecycle",
iconCls: "",
name: "askPreparationQuestionsRecycle",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestReportRecycle,
hidden: true,
children: []
}, {
path: "/askPreparationQuestionsAdd",
iconCls: "",
name: "askPreparationQuestionsAdd",
demoRoles: ["ROLE_JIAOSHI"],
component: ExaminationPaperAddQs,
hidden: true,
children: []
}]
},
{
path: "/testTeacher",
iconImage: require("@/assets/images/aside/test-default.png"),
name: "即时测",
component: Layout,
children: [{
path: "/testPaper",
iconImage: require("@/assets/images/aside/paper-default.png"),
selectedIconImage: require("@/assets/images/aside/paper-selected.png"),
name: '组卷',
demoRoles: ["ROLE_JIAOSHI"],
component: askTestQuestion,
children: []
}, {
path: "/testReport",
iconImage: require("@/assets/images/aside/suitangwen-baobiao-default.png"),
selectedIconImage: require("@/assets/images/aside/suitangwen-baobiao-selected.png"),
name: '报表',
demoRoles: ["ROLE_JIAOSHI", "ROLE_BANZHUREN"],
component: askTestReport,
children: []
}, {
path: "/testPaperQuestionsDetail",
iconCls: "",
name: "testPaperQuestionsDetail",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestDetail,
hidden: true,
children: []
}, {
path: "/testPaperQuestionsUpdate",
iconCls: "",
name: "testPaperQuestionsUpdate",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestUpdate,
hidden: true,
children: []
}, {
path: "/testReportDetail",
iconCls: "",
name: "testReportDetail",
|
ef16e57e
LH_PC
fix:前端版本迭代
|
349
|
demoRoles: ["ROLE_JIAOSHI","ROLE_BANZHUREN"],
|
f45b3c05
LH_PC
云平台新UI界面
|
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
component: askTestReportDetail,
hidden: true,
children: []
}, {
path: "/testReportRecycle",
iconCls: "",
name: "testReportRecycle",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestReportRecycle,
hidden: true,
children: []
}, {
path: "/testPaperRecycle",
iconCls: "",
name: "testPaperRecycle",
demoRoles: ["ROLE_JIAOSHI"],
component: askTestReportRecycle,
hidden: true,
children: []
}, {
path: "/testPaperAdd",
iconCls: "",
name: "testPaperAdd",
demoRoles: ["ROLE_JIAOSHI"],
component: ExaminationPaperAdd,
hidden: true,
children: []
}]
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
378
|
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
{
path: "/setUpConglomerate",
iconCls: "fa fa-building", // 图标样式class
name: "学校管理",
component: Layout,
alone: true,
children: [
{
path: "/setUpConglomerate",
iconCls: "fa fa-building",
name: '集团管理',
component: SetUpConglomerate,
children: []
},
]
},
{
path: "/setUpAccount",
iconCls: "fa fa-id-card-o", // 图标样式class
name: "账号管理",
component: Layout,
alone: true,
children: [
{
path: "/setUpAccount",
iconCls: "fa fa-id-card-o",
name: '',
component: SetUpAccount,
children: []
},
]
},
|
f45b3c05
LH_PC
云平台新UI界面
|
411
|
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
412
413
414
|
{
path: "/",
iconCls: "fa fa-cog",
|
6d7bd862
梁保满
飞书bug
|
415
|
name: '学校管理',
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
416
417
418
419
420
421
422
423
424
425
|
component: Layout,
children: [
{
path: "/setUpSchool",
iconCls: "fa fa-calculator",
name: '学校设置',
component: SetUpSchool,
children: []
},
{
|
0454f787
梁保满
班级管理,班级列表修改,科目设置
|
426
427
428
429
430
431
432
|
path: "/setUpClazz",
iconCls: "fa fa-sitemap",
name: '班级管理',
component: SetUpClazz,
children: []
},
{
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
433
434
435
436
437
438
439
440
441
442
443
444
445
|
path: "/setUpTeacher",
iconCls: "fa fa-male",
name: '教师管理',
component: SetUpTeacher,
children: []
},
{
path: "/setUpStudent",
iconCls: "fa fa-mortar-board",
name: '学生管理',
component: SetUpStudent,
children: []
},
|
e5e4a3e6
梁保满
v1.3
|
446
447
448
449
450
451
452
453
|
{
path: "/archivedClazz",
iconCls: "fa fa-list-ul",
name: '已归档班级',
component: ArchivedClazz,
hidden: true,
children: []
},
|
dc56294d
梁保满
班级分班
|
454
455
456
457
458
459
460
461
|
{
path: "/archived",
iconCls: "fa fa-list-ul",
name: '分班',
component: Archived,
hidden: true,
children: []
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
462
463
|
]
},
|
533a17d8
梁保满
备题组卷添加批量设置答案
|
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
|
{
path: "/card",
iconCls: "fa fa-id-card", // 图标样式class
name: "发卡记录",
component: Layout,
alone: true,
children: [
{
path: "/card",
iconCls: "fa fa-id-card", // 图标样式class
name: "",
component: Card,
children: []
}
]
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
480
481
482
483
484
485
486
487
488
489
490
491
|
{
path: "/device",
iconCls: "fa fa-dashboard", // 图标样式class
name: "设备状态",
component: Layout,
alone: true,
children: [
{
path: "/device",
iconCls: "fa fa-dashboard", // 图标样式class
name: "",
component: Device,
|
5be3bb70
梁保满
切换账号,缓存组件接口报错问题
|
492
493
494
|
meta: {
keepAlive: true,
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
495
|
children: []
|
db11048f
阿宝
设备状态,学校管理
|
496
497
498
499
500
501
|
},
{
path: "/deviceLog",
iconCls: "fa fa-list-alt", // 图标样式class
name: "",
component: DeviceLog,
|
236b1f0e
梁保满
周末-飞书bug
|
502
|
parent: "device",
|
db11048f
阿宝
设备状态,学校管理
|
503
|
children: []
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
|
}
]
},
{
path: "/analysis",
iconCls: "fa fa-area-chart", // 图标样式class
name: "使用分析",
component: Layout,
alone: true,
children: [
{
path: "/analysis",
iconCls: "fa fa-area-chart", // 图标样式class
name: "",
component: Analysis,
children: []
}
]
},
{
path: "/down",
iconCls: "fa fa-download", // 图标样式class
name: "软件下载",
component: Layout,
alone: true,
children: [
{
path: "/down",
iconCls: "fa fa-download", // 图标样式class
name: "发卡软件",
component: Down,
children: []
},
{
path: "/downClient",
iconCls: "", // 图标样式class
name: "授课端软件",
component: DownClient,
|
236b1f0e
梁保满
周末-飞书bug
|
542
|
parent: "down",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
|
children: []
}
]
},
{
path: "/dataSync",
iconCls: "fa fa-random", // 图标样式class
name: "数据同步",
component: Layout,
alone: true,
children: [
{
path: "/dataSync",
iconCls: "fa fa-random", // 图标样式class
name: "",
component: DataSync,
children: []
}
]
},
|
a74e17f6
梁保满
隐藏学生画像
|
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
// {
// path: "/portrait",
// iconCls: "fa fa-users", // 图标样式class
// name: "学生画像",
// component: Layout,
// alone: true,
// children: [
// {
// path: "/portrait",
// iconCls: "fa fa-users", // 图标样式class
// name: "",
// component: Portrait,
// meta: {
// keepAlive: true,
// },
// children: []
// },
// {
// path: "/portraitDetail",
// iconCls: "", // 图标样式class
// name: "授课端软件",
// component: PortraitDetail,
// parent: "down",
// children: []
// }
// ]
// },
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
590
|
]
|
f45b3c05
LH_PC
云平台新UI界面
|
591
|
|
6dc19f47
梁保满
路由及文件名调整
|
592
|
//长水版路由表
|
e5e4a3e6
梁保满
v1.3
|
593
|
let csAddrouters = [
|
3617eaad
梁保满
长水账号设置
|
594
595
|
{
path: "/examinationPaper",
|
d01c5799
梁保满
随堂问 报表开发
|
596
|
iconCls: "fa fa-file-text",
|
3617eaad
梁保满
长水账号设置
|
597
598
599
600
601
602
|
name: "备题组卷",
component: Layout,
alone: true,
children: [
{
path: "/examinationPaper",
|
d01c5799
梁保满
随堂问 报表开发
|
603
|
iconCls: "fa fa-file-text",
|
3617eaad
梁保满
长水账号设置
|
604
|
name: "examinationPaper",
|
6dc19f47
梁保满
路由及文件名调整
|
605
|
component: ExaminationPaper,
|
3617eaad
梁保满
长水账号设置
|
606
607
608
609
|
children: []
},
{
path: "/examinationPaperAdd",
|
d01c5799
梁保满
随堂问 报表开发
|
610
|
iconCls: "",
|
3617eaad
梁保满
长水账号设置
|
611
|
name: "examinationPaperAdd",
|
6dc19f47
梁保满
路由及文件名调整
|
612
|
component: ExaminationPaperAdd,
|
3617eaad
梁保满
长水账号设置
|
613
614
615
616
617
|
parent: "examinationPaper",
children: []
},
{
path: "/examinationPaperEdit",
|
d01c5799
梁保满
随堂问 报表开发
|
618
|
iconCls: "",
|
3617eaad
梁保满
长水账号设置
|
619
|
name: "修改答题卡",
|
6dc19f47
梁保满
路由及文件名调整
|
620
|
component: ExaminationPaperEdit,
|
3617eaad
梁保满
长水账号设置
|
621
622
623
624
625
|
parent: "examinationPaper",
children: []
},
{
path: "/examinationPaperRecycle",
|
d01c5799
梁保满
随堂问 报表开发
|
626
|
iconCls: "",
|
e5e4a3e6
梁保满
v1.3
|
627
|
name: "回收站答题卡",
|
6dc19f47
梁保满
路由及文件名调整
|
628
|
component: ExaminationPaperRecycle,
|
3617eaad
梁保满
长水账号设置
|
629
630
631
|
parent: "examinationPaper",
children: []
},
|
e5e4a3e6
梁保满
v1.3
|
632
633
|
{
path: "/examinationPaperArchiving",
|
d01c5799
梁保满
随堂问 报表开发
|
634
|
iconCls: "",
|
e5e4a3e6
梁保满
v1.3
|
635
636
637
638
639
640
|
name: "已归档答题卡",
component: ExaminationPaperArchiving,
parent: "examinationPaper",
hidden: true,
children: []
},
|
3617eaad
梁保满
长水账号设置
|
641
642
643
644
|
]
},
{
path: "/ask",
|
d01c5799
梁保满
随堂问 报表开发
|
645
|
iconCls: "fa fa-bar-chart",
|
3617eaad
梁保满
长水账号设置
|
646
647
648
649
650
651
|
name: "随堂问报表",
component: Layout,
alone: true,
children: [
{
path: "/ask",
|
d01c5799
梁保满
随堂问 报表开发
|
652
|
iconCls: "fa fa-bar-chart",
|
3617eaad
梁保满
长水账号设置
|
653
654
655
656
657
658
659
|
name: "ask",
name: "随堂问报表",
component: Ask,
meta: {
keepAlive: true,
},
children: []
|
3617eaad
梁保满
长水账号设置
|
660
661
662
|
},
{
path: "/askAnalysis",
|
d01c5799
梁保满
随堂问 报表开发
|
663
|
iconCls: "",
|
3617eaad
梁保满
长水账号设置
|
664
665
666
667
668
669
670
671
672
|
name: "随堂问报表分析",
component: AskAnalysis,
parent: "ask",
children: []
}
]
},
{
path: "/test",
|
d01c5799
梁保满
随堂问 报表开发
|
673
|
iconCls: "fa fa-pie-chart",
|
3617eaad
梁保满
长水账号设置
|
674
675
676
677
678
679
|
name: "即时测报表",
component: Layout,
alone: true,
children: [
{
path: "/test",
|
d01c5799
梁保满
随堂问 报表开发
|
680
|
iconCls: "fa fa-pie-chart",
|
3617eaad
梁保满
长水账号设置
|
681
682
683
684
685
686
687
688
689
|
name: "",
component: Test,
meta: {
keepAlive: true,
},
children: []
},
{
path: "/testAnalysis",
|
d01c5799
梁保满
随堂问 报表开发
|
690
|
iconCls: "",
|
3617eaad
梁保满
长水账号设置
|
691
692
693
694
695
696
697
698
699
700
|
name: "即时测报表分析",
component: TestAnalysis,
parent: "test",
children: []
}
]
},
{
path: "/setUpConglomerate",
|
d01c5799
梁保满
随堂问 报表开发
|
701
|
iconCls: "fa fa-building",
|
3617eaad
梁保满
长水账号设置
|
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
|
name: "学校管理",
component: Layout,
alone: true,
children: [
{
path: "/setUpConglomerate",
iconCls: "fa fa-building",
name: '集团管理',
component: SetUpConglomerate,
children: []
},
]
},
{
path: "/setUpAccount",
|
d01c5799
梁保满
随堂问 报表开发
|
717
|
iconCls: "fa fa-id-card-o",
|
3617eaad
梁保满
长水账号设置
|
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
|
name: "账号管理",
component: Layout,
alone: true,
children: [
{
path: "/setUpAccount",
iconCls: "fa fa-id-card-o",
name: '',
component: SetUpAccount,
children: []
},
]
},
{
path: "/",
iconCls: "fa fa-cog",
name: '学校管理',
component: Layout,
children: [
{
path: "/setUpSchool",
iconCls: "fa fa-calculator",
name: '学校设置',
component: SetUpSchool,
children: []
},
{
path: "/setUpTeacher",
iconCls: "fa fa-male",
name: '教师管理',
component: SetUpTeacher,
children: []
},
{
path: "/setUpStudent",
iconCls: "fa fa-mortar-board",
name: '学生管理',
component: SetUpStudent,
children: []
},
]
},
{
path: "/card",
|
d01c5799
梁保满
随堂问 报表开发
|
762
|
iconCls: "fa fa-id-card",
|
3617eaad
梁保满
长水账号设置
|
763
764
765
766
767
768
|
name: "发卡记录",
component: Layout,
alone: true,
children: [
{
path: "/card",
|
d01c5799
梁保满
随堂问 报表开发
|
769
|
iconCls: "fa fa-id-card",
|
3617eaad
梁保满
长水账号设置
|
770
771
772
773
774
775
776
777
|
name: "",
component: Card,
children: []
}
]
},
{
path: "/device",
|
d01c5799
梁保满
随堂问 报表开发
|
778
|
iconCls: "fa fa-dashboard",
|
3617eaad
梁保满
长水账号设置
|
779
780
781
782
783
784
|
name: "设备状态",
component: Layout,
alone: true,
children: [
{
path: "/device",
|
d01c5799
梁保满
随堂问 报表开发
|
785
|
iconCls: "fa fa-dashboard",
|
3617eaad
梁保满
长水账号设置
|
786
787
788
789
790
791
792
793
794
|
name: "",
component: Device,
meta: {
keepAlive: true,
},
children: []
},
{
path: "/deviceLog",
|
d01c5799
梁保满
随堂问 报表开发
|
795
|
iconCls: "fa fa-list-alt",
|
3617eaad
梁保满
长水账号设置
|
796
797
798
799
800
801
802
803
804
|
name: "",
component: DeviceLog,
parent: "device",
children: []
}
]
},
{
path: "/analysis",
|
d01c5799
梁保满
随堂问 报表开发
|
805
|
iconCls: "fa fa-area-chart",
|
3617eaad
梁保满
长水账号设置
|
806
807
808
809
810
811
|
name: "使用分析",
component: Layout,
alone: true,
children: [
{
path: "/analysis",
|
d01c5799
梁保满
随堂问 报表开发
|
812
|
iconCls: "fa fa-area-chart",
|
3617eaad
梁保满
长水账号设置
|
813
814
815
816
817
818
819
820
|
name: "",
component: Analysis,
children: []
}
]
},
{
path: "/down",
|
d01c5799
梁保满
随堂问 报表开发
|
821
|
iconCls: "fa fa-download",
|
3617eaad
梁保满
长水账号设置
|
822
823
824
825
826
827
|
name: "软件下载",
component: Layout,
alone: true,
children: [
{
path: "/down",
|
d01c5799
梁保满
随堂问 报表开发
|
828
|
iconCls: "fa fa-download",
|
3617eaad
梁保满
长水账号设置
|
829
830
831
832
833
834
|
name: "发卡软件",
component: Down,
children: []
},
{
path: "/downClient",
|
d01c5799
梁保满
随堂问 报表开发
|
835
|
iconCls: "",
|
3617eaad
梁保满
长水账号设置
|
836
837
838
839
840
841
842
843
844
|
name: "授课端软件",
component: DownClient,
parent: "down",
children: []
}
]
},
{
path: "/dataSync",
|
d01c5799
梁保满
随堂问 报表开发
|
845
|
iconCls: "fa fa-random",
|
3617eaad
梁保满
长水账号设置
|
846
847
848
849
850
851
|
name: "数据同步",
component: Layout,
alone: true,
children: [
{
path: "/dataSync",
|
d01c5799
梁保满
随堂问 报表开发
|
852
|
iconCls: "fa fa-random",
|
3617eaad
梁保满
长水账号设置
|
853
854
855
856
857
858
859
|
name: "",
component: DataSync,
children: []
}
]
},
]
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
860
|
|
6dc19f47
梁保满
路由及文件名调整
|
861
|
//个人版版路由表
|
77ebf04d
梁保满
个人版
|
862
863
|
const addroutersPersonal = [
{
|
03bce046
梁保满
个人版调整
|
864
865
866
867
868
869
870
871
872
873
|
path: "/setUpStudent",
iconCls: "fa fa-mortar-board",
name: '班级名单',
component: Layout,
alone: true,
children: [
{
path: "/setUpStudent",
iconCls: "a fa-mortar-board",
name: '',
|
8ad80958
梁保满
教师学生管理,设备状态
|
874
|
component: SetUpPersonalSetUpStudent,
|
03bce046
梁保满
个人版调整
|
875
876
877
878
|
children: []
},
]
},
|
3587d377
梁保满
归档流程调整
|
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
|
// {
// path: "/examinationPaper",
// iconCls: "fa fa-file-text",
// name: "备题组卷",
// component: Layout,
// alone: true,
// children: [
// {
// path: "/examinationPaper",
// iconCls: "fa fa-file-text",
// name: "examinationPaper",
// component: ExaminationPaper,
// children: []
// },
// {
// path: "/examinationPaperAdd",
// iconCls: "",
// name: "examinationPaperAdd",
// component: ExaminationPaperAdd,
// parent: "examinationPaper",
// children: []
// },
// {
// path: "/examinationPaperAddQs",
// iconCls: "",
// name: "examinationPaperAddQs",
// component: ExaminationPaperAddQs,
// parent: "examinationPaper",
// children: []
// },
// {
// path: "/examinationPaperEdit",
// iconCls: "",
// name: "修改答题卡",
// component: ExaminationPaperEdit,
// parent: "examinationPaper",
// children: []
// },
// {
// path: "/examinationPaperRecycle",
// iconCls: "",
// name: "回收站答题卡",
// component: ExaminationPaperRecycle,
// parent: "examinationPaper",
// children: []
// },
// {
// path: "/examinationPaperArchiving",
// iconCls: "",
// name: "已归档答题卡",
// component: ExaminationPaperArchiving,
// parent: "examinationPaper",
// hidden: true,
// children: []
// },
// ]
// },
// {
// path: "/ask",
// iconCls: "fa fa-bar-chart",
// name: "随堂问报表",
// component: Layout,
// alone: true,
// children: [
// {
// path: "/ask",
// iconCls: "fa fa-bar-chart",
// name: "ask",
// name: "随堂问报表",
// component: Ask,
// meta: {
// keepAlive: false,
// },
// children: []
// },
// {
// path: "/askList",
// iconCls: "fa fa-bar-chart", // 图标样式class
// name: "ask",
// name: "随堂问报表",
// component: AskList,
// meta: {
// keepAlive: true,
// },
// children: [
// {
// path: "/askAnalysis",
// iconCls: "",
// name: "随堂问报表分析",
// component: AskAnalysis,
// parent: "ask",
// children: []
// },
// {
// path: "/askArchiving",
// iconCls: "",
// name: "随堂问已归档报表分析",
// component: AskArchiving,
// parent: "ask",
// hidden: true,
// meta: {
// keepAlive: true,
// },
// children: []
// }
// ]
// },
// ]
// },
// {
// path: "/test",
// iconCls: "fa fa-pie-chart",
// name: "即时测报表",
// component: Layout,
// alone: true,
// children: [
// {
// path: "/test",
// iconCls: "fa fa-pie-chart",
// name: "",
// component: Test,
// meta: {
// keepAlive: true,
// },
// children: []
// },
// {
// path: "/testAnalysis",
// iconCls: "",
// name: "即时测报表分析",
// component: TestAnalysis,
// parent: "test",
// children: []
// },
// {
// path: "/testArchiving",
// iconCls: "",
// name: "即时测已归档报表分析",
// component: TestArchiving,
// parent: "test",
// hidden: true,
// meta: {
// keepAlive: true,
// },
// children: []
// }
// ]
// },
|
03bce046
梁保满
个人版调整
|
1031
|
{
|
77ebf04d
梁保满
个人版
|
1032
|
path: "/examinationPaper",
|
3587d377
梁保满
归档流程调整
|
1033
|
iconCls: "fa fa-file-text", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1034
1035
1036
1037
1038
1039
|
name: "备题组卷",
component: Layout,
alone: true,
children: [
{
path: "/examinationPaper",
|
3587d377
梁保满
归档流程调整
|
1040
|
iconCls: "fa fa-file-text", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1041
|
name: "examinationPaper",
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
1042
|
component: ExaminationPaper,
|
77ebf04d
梁保满
个人版
|
1043
1044
1045
1046
|
children: []
},
{
path: "/examinationPaperAdd",
|
3587d377
梁保满
归档流程调整
|
1047
|
iconCls: "", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1048
|
name: "examinationPaperAdd",
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
1049
|
component: ExaminationPaperAdd,
|
77ebf04d
梁保满
个人版
|
1050
1051
1052
1053
|
parent: "examinationPaper",
children: []
},
{
|
ce278878
梁保满
2-2 bugfix
|
1054
|
path: "/examinationPaperAddQs",
|
3587d377
梁保满
归档流程调整
|
1055
|
iconCls: "", // 图标样式class
|
ce278878
梁保满
2-2 bugfix
|
1056
1057
|
name: "examinationPaperAddQs",
component: ExaminationPaperAddQs,
|
4c2f99b0
梁保满
修改组卷
|
1058
1059
1060
1061
|
parent: "examinationPaper",
children: []
},
{
|
77ebf04d
梁保满
个人版
|
1062
|
path: "/examinationPaperEdit",
|
3587d377
梁保满
归档流程调整
|
1063
|
iconCls: "", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1064
|
name: "修改答题卡",
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
1065
|
component: ExaminationPaperEdit,
|
77ebf04d
梁保满
个人版
|
1066
1067
1068
1069
1070
|
parent: "examinationPaper",
children: []
},
{
path: "/examinationPaperRecycle",
|
3587d377
梁保满
归档流程调整
|
1071
|
iconCls: "", // 图标样式class
|
e5e4a3e6
梁保满
v1.3
|
1072
|
name: "回收站答题卡",
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
1073
|
component: ExaminationPaperRecycle,
|
77ebf04d
梁保满
个人版
|
1074
1075
1076
|
parent: "examinationPaper",
children: []
},
|
e5e4a3e6
梁保满
v1.3
|
1077
1078
|
{
path: "/examinationPaperArchiving",
|
3587d377
梁保满
归档流程调整
|
1079
|
iconCls: "", // 图标样式class
|
e5e4a3e6
梁保满
v1.3
|
1080
1081
1082
1083
1084
1085
|
name: "已归档答题卡",
component: ExaminationPaperArchiving,
parent: "examinationPaper",
hidden: true,
children: []
},
|
77ebf04d
梁保满
个人版
|
1086
1087
1088
1089
|
]
},
{
path: "/ask",
|
3587d377
梁保满
归档流程调整
|
1090
|
iconCls: "fa fa-bar-chart", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1091
1092
1093
1094
1095
1096
|
name: "随堂问报表",
component: Layout,
alone: true,
children: [
{
path: "/ask",
|
3587d377
梁保满
归档流程调整
|
1097
|
iconCls: "fa fa-bar-chart", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1098
|
name: "随堂问报表",
|
d01c5799
梁保满
随堂问 报表开发
|
1099
|
component: Ask,
|
77ebf04d
梁保满
个人版
|
1100
1101
1102
1103
|
children: []
},
{
|
d01c5799
梁保满
随堂问 报表开发
|
1104
1105
|
path: "/askList",
iconCls: "fa fa-bar-chart", // 图标样式class
|
d01c5799
梁保满
随堂问 报表开发
|
1106
1107
|
name: "随堂问报表",
component: AskList,
|
d01c5799
梁保满
随堂问 报表开发
|
1108
1109
1110
|
children: [
{
path: "/askAnalysis",
|
3587d377
梁保满
归档流程调整
|
1111
|
iconCls: "", // 图标样式class
|
d01c5799
梁保满
随堂问 报表开发
|
1112
1113
|
name: "随堂问报表分析",
component: AskAnalysis,
|
3587d377
梁保满
归档流程调整
|
1114
|
parent: "askList",
|
d01c5799
梁保满
随堂问 报表开发
|
1115
1116
|
children: []
},
|
3587d377
梁保满
归档流程调整
|
1117
1118
|
],
|
e5e4a3e6
梁保满
v1.3
|
1119
|
},
|
3587d377
梁保满
归档流程调整
|
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
|
{
path: "/askArchiving",
iconCls: "", // 图标样式class
name: "随堂问已归档报表分析",
component: AskArchiving,
parent: "ask",
hidden: true,
meta: {
keepAlive: true,
},
children: []
|
f45b3c05
LH_PC
云平台新UI界面
|
1131
|
|
3587d377
梁保满
归档流程调整
|
1132
|
}
|
77ebf04d
梁保满
个人版
|
1133
1134
1135
1136
|
]
},
{
path: "/test",
|
3587d377
梁保满
归档流程调整
|
1137
|
iconCls: "fa fa-pie-chart", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1138
1139
1140
1141
1142
1143
|
name: "即时测报表",
component: Layout,
alone: true,
children: [
{
path: "/test",
|
3587d377
梁保满
归档流程调整
|
1144
|
iconCls: "fa fa-pie-chart", // 图标样式class
|
77ebf04d
梁保满
个人版
|
1145
|
name: "",
|
d01c5799
梁保满
随堂问 报表开发
|
1146
|
component: Test,
|
77ebf04d
梁保满
个人版
|
1147
1148
1149
|
children: []
},
{
|
3587d377
梁保满
归档流程调整
|
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
|
path: "/testList",
name: "",
component: TestList,
children: [
{
path: "/testAnalysis",
iconCls: "", // 图标样式class
name: "即时测报表分析",
component: TestAnalysis,
parent: "test",
children: []
},
]
|
e5e4a3e6
梁保满
v1.3
|
1164
1165
1166
|
},
{
path: "/testArchiving",
|
3587d377
梁保满
归档流程调整
|
1167
|
iconCls: "", // 图标样式class
|
d01c5799
梁保满
随堂问 报表开发
|
1168
1169
|
name: "即时测已归档报表分析",
component: TestArchiving,
|
e5e4a3e6
梁保满
v1.3
|
1170
|
parent: "test",
|
8ef22809
梁保满
软件下载页面添加.net环境下载
|
1171
|
hidden: true,
|
3587d377
梁保满
归档流程调整
|
1172
1173
1174
|
meta: {
keepAlive: true,
},
|
e5e4a3e6
梁保满
v1.3
|
1175
|
children: []
|
77ebf04d
梁保满
个人版
|
1176
1177
1178
1179
|
}
]
},
|
3587d377
梁保满
归档流程调整
|
1180
|
|
77ebf04d
梁保满
个人版
|
1181
1182
|
{
path: "/portrait",
|
d01c5799
梁保满
随堂问 报表开发
|
1183
|
iconCls: "fa fa-users",
|
77ebf04d
梁保满
个人版
|
1184
1185
1186
1187
1188
1189
|
name: "学生画像",
component: Layout,
alone: true,
children: [
{
path: "/portrait",
|
d01c5799
梁保满
随堂问 报表开发
|
1190
|
iconCls: "fa fa-users",
|
77ebf04d
梁保满
个人版
|
1191
|
name: "",
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
1192
|
component: Portrait,
|
77ebf04d
梁保满
个人版
|
1193
1194
1195
1196
1197
1198
1199
|
meta: {
keepAlive: true,
},
children: []
},
{
path: "/portraitDetail",
|
d01c5799
梁保满
随堂问 报表开发
|
1200
|
iconCls: "",
|
77ebf04d
梁保满
个人版
|
1201
|
name: "授课端软件",
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
1202
|
component: PortraitDetail,
|
77ebf04d
梁保满
个人版
|
1203
1204
1205
1206
1207
1208
|
parent: "down",
children: []
}
]
},
{
|
03bce046
梁保满
个人版调整
|
1209
|
path: "/dataSync",
|
d01c5799
梁保满
随堂问 报表开发
|
1210
|
iconCls: "fa fa-random",
|
03bce046
梁保满
个人版调整
|
1211
|
name: "数据同步",
|
77ebf04d
梁保满
个人版
|
1212
1213
1214
1215
|
component: Layout,
alone: true,
children: [
{
|
03bce046
梁保满
个人版调整
|
1216
|
path: "/dataSync",
|
d01c5799
梁保满
随堂问 报表开发
|
1217
|
iconCls: "fa fa-random",
|
03bce046
梁保满
个人版调整
|
1218
|
name: "",
|
d01c5799
梁保满
随堂问 报表开发
|
1219
|
component: DataSync,
|
77ebf04d
梁保满
个人版
|
1220
|
children: []
|
03bce046
梁保满
个人版调整
|
1221
|
}
|
77ebf04d
梁保满
个人版
|
1222
1223
1224
1225
|
]
},
{
path: "/down",
|
d01c5799
梁保满
随堂问 报表开发
|
1226
|
iconCls: "fa fa-download",
|
77ebf04d
梁保满
个人版
|
1227
1228
1229
1230
1231
1232
|
name: "软件下载",
component: Layout,
alone: true,
children: [
{
path: "/down",
|
d01c5799
梁保满
随堂问 报表开发
|
1233
|
iconCls: "fa fa-download",
|
77ebf04d
梁保满
个人版
|
1234
|
name: "发卡软件",
|
d01c5799
梁保满
随堂问 报表开发
|
1235
|
component: Down,
|
77ebf04d
梁保满
个人版
|
1236
1237
1238
1239
|
children: []
}
]
},
|
77ebf04d
梁保满
个人版
|
1240
1241
|
]
|
6dc19f47
梁保满
路由及文件名调整
|
1242
|
// 超级管理员路由表
|
77ebf04d
梁保满
个人版
|
1243
1244
1245
|
const addRoutersAdmin = [
{
path: "/account",
|
d01c5799
梁保满
随堂问 报表开发
|
1246
|
iconCls: "fa fa-id-card-o",
|
77ebf04d
梁保满
个人版
|
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
|
name: "账号管理",
component: Layout,
alone: true,
children: [
{
path: "/account",
iconCls: "fa fa-id-card-o",
name: '',
component: AdminAccount,
children: []
},
]
},
{
path: "/device",
|
d01c5799
梁保满
随堂问 报表开发
|
1262
|
iconCls: "fa fa-dashboard",
|
77ebf04d
梁保满
个人版
|
1263
1264
1265
1266
1267
1268
|
name: "设备状态",
component: Layout,
alone: true,
children: [
{
path: "/device",
|
d01c5799
梁保满
随堂问 报表开发
|
1269
|
iconCls: "fa fa-dashboard",
|
77ebf04d
梁保满
个人版
|
1270
1271
1272
1273
1274
1275
1276
1277
1278
|
name: "",
component: AdminDevice,
meta: {
keepAlive: true,
},
children: []
},
{
path: "/deviceLog",
|
d01c5799
梁保满
随堂问 报表开发
|
1279
|
iconCls: "fa fa-list-alt",
|
77ebf04d
梁保满
个人版
|
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
|
name: "",
component: AdminDeviceLog,
parent: "device",
children: []
}
]
},
{
path: "/clientVersion",
iconCls: "fa fa-cogs", // 图标样式class
name: "版本管理",
component: Layout,
alone: true,
children: [
{
path: "/clientVersion",
iconCls: "fa fa-id-card-o",
name: '',
component: AdminClientVersion,
children: []
},
]
},
]
|
c1b532ad
梁保满
权限配置,路由基础设置
|
1305
1306
1307
|
export default new Router({
routes: defaultRouter
})
|
e5e4a3e6
梁保满
v1.3
|
1308
|
export { defaultRouter, addrouters, addroutersPersonal, addRoutersAdmin, csAddrouters }
|