Blame view

src/router/index.js 23.8 KB
c1b532ad   梁保满   权限配置,路由基础设置
1
2
3
4
5
6
7
  import en from "../i18n/lang/en"
  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   梁保满   备题组卷部分前端页面基本完成
8
  
c1b532ad   梁保满   权限配置,路由基础设置
9
10
  // 不是必须加载的组件使用懒加载
  const NotFound = () => import("@/views/page404")
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
11
12
13
14
  const ExaminationPaper = () => import("@/views/examinationPaper/index")
  const ExaminationPaperAdd = () => import("@/views/examinationPaper/add")
  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")
3617eaad   梁保满   长水账号设置
18
  const CSExaminationPaper = () => import("@/views/examinationPaper/index")
e5e4a3e6   梁保满   v1.3
19
20
21
22
23
24
  // const CSExaminationPaperAdd = () => import("@/views/standard/examinationPaper/add")
  // const CSExaminationPaperEdit = () => import("@/views/standard/examinationPaper/edit")
  // const CSExaminationPaperRecycle = () => import("@/views/standard/examinationPaper/recycle")
  const CSExaminationPaperAdd = () => import("@/views/examinationPaper/add")
  const CSExaminationPaperEdit = () => import("@/views/examinationPaper/edit")
  const CSExaminationPaperRecycle = () => import("@/views/examinationPaper/recycle")
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
25
26
  
  
77ebf04d   梁保满   个人版
27
28
  const Ask = () => import("@/views/standard/ask/index")
  const AskAnalysis = () => import("@/views/standard/ask/analysis")
e5e4a3e6   梁保满   v1.3
29
  const AskArchiving = () => import("@/views/standard/ask/archiving")
77ebf04d   梁保满   个人版
30
31
  const Test = () => import("@/views/standard/test/index")
  const TestAnalysis = () => import("@/views/standard/test/analysis")
e5e4a3e6   梁保满   v1.3
32
  const TestArchiving = () => import("@/views/standard/test/archiving")
77ebf04d   梁保满   个人版
33
34
35
36
37
38
39
40
41
42
  const DataSync = () => import("@/views/standard/dataSync/index")
  const Card = () => import("@/views/standard/card/index")
  const Analysis = () => import("@/views/standard/analysis/index")
  const Device = () => import("@/views/standard/device/index")
  const DeviceLog = () => import("@/views/standard/device/log")
  const Down = () => import("@/views/standard/down/index")
  const DownClient = () => import("@/views/standard/down/client")
  const SetUpAccount = () => import("@/views/standard/setUp/account")
  const SetUpConglomerate = () => import("@/views/standard/setUp/conglomerate")
  const SetUpSchool = () => import("@/views/standard/setUp/school")
77ebf04d   梁保满   个人版
43
  const SetUpTeacher = () => import("@/views/standard/setUp/teacher")
e5e4a3e6   梁保满   v1.3
44
45
  const SetUpStudent = () => import("@/views/standard/setUp/student")
  const ArchivedClazz = () => import("@/views/standard/setUp/archivedClazz")
77ebf04d   梁保满   个人版
46
  
77ebf04d   梁保满   个人版
47
48
  const PersonalAsk = () => import("@/views/personal/ask/index")
  const PersonalAskAnalysis = () => import("@/views/personal/ask/analysis")
e5e4a3e6   梁保满   v1.3
49
  const PersonalArchiving = () => import("@/views/personal/ask/archiving")
77ebf04d   梁保满   个人版
50
51
  const PersonalTest = () => import("@/views/personal/test/index")
  const PersonalTestAnalysis = () => import("@/views/personal/test/analysis")
e5e4a3e6   梁保满   v1.3
52
  const PersonalTestArchiving = () => import("@/views/personal/test/archiving")
77ebf04d   梁保满   个人版
53
  const PersonalDataSync = () => import("@/views/personal/dataSync/index")
77ebf04d   梁保满   个人版
54
55
56
57
58
59
60
61
  const PersonalSetUpStudent = () => import("@/views/personal/setUp/student")
  const PersonalDown = () => import("@/views/personal/down/index")
  const PersonalUserInfo = () => import("@/views/personal/userInfo/index")
  
  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
64
65
66
  
  /**
   * 重写路由的push方法
   */
  const routerPush = Router.prototype.push
236b1f0e   梁保满   周末-飞书bug
67
  Router.prototype.push = function push(location) {
c1b532ad   梁保满   权限配置,路由基础设置
68
69
70
71
72
    return routerPush.call(this, location).catch(error => error)
  }
  Vue.use(Router)
  let routeName = en.routeName
  let defaultRouter = [
236b1f0e   梁保满   周末-飞书bug
73
74
    {
      path: "/",
c1b532ad   梁保满   权限配置,路由基础设置
75
76
77
78
79
80
81
82
83
84
85
86
87
      redirect: "/index",
      hidden: true,
      children: []
    },
    {
      path: "/login",
      component: Login,
      name: "登录",
      hidden: true,
      children: []
    },
    {
      path: "/index",
4c4f7640   梁保满   路由表,路由前端文件
88
89
      iconCls: "fa fa-home", // 图标样式class
      name: "应用首页",
c1b532ad   梁保满   权限配置,路由基础设置
90
91
92
93
94
95
96
97
98
99
100
101
      component: Layout,
      alone: true,
      children: [
        {
          path: "/index",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "主页",
          component: HomeMain,
          children: []
        }
      ]
    },
e823fb79   阿宝   集团管理员
102
    {
77ebf04d   梁保满   个人版
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
      path: "/userInfo",
      iconCls: "fa fa-user", // 图标样式class
      name: "个人信息",
      component: Layout,
      hidden: true,
      children: [
        {
          path: "/userInfo",
          iconCls: "fa fa-user", // 图标样式class
          name: "个人信息",
          component: PersonalUserInfo,
          children: []
        }
      ]
    },
    {
c1b532ad   梁保满   权限配置,路由基础设置
119
120
121
122
123
124
125
126
      path: "/404",
      component: NotFound,
      name: "404",
      hidden: true,
      children: []
    }
  ]
  
e5e4a3e6   梁保满   v1.3
127
  let addrouters = [
13b58a42   梁保满   备题组卷部分前端页面基本完成
128
129
130
131
132
133
134
135
136
137
    {
      path: "/examinationPaper",
      iconCls: "fa fa-file-text", // 图标样式class
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
          iconCls: "fa fa-file-text", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
138
          name: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
139
140
141
142
143
144
          component: ExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
145
          name: "examinationPaperAdd",
13b58a42   梁保满   备题组卷部分前端页面基本完成
146
          component: ExaminationPaperAdd,
236b1f0e   梁保满   周末-飞书bug
147
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
148
149
150
151
152
153
154
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: ExaminationPaperEdit,
236b1f0e   梁保满   周末-飞书bug
155
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
156
157
158
159
160
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
e5e4a3e6   梁保满   v1.3
161
          name: "回收站答题卡",
13b58a42   梁保满   备题组卷部分前端页面基本完成
162
          component: ExaminationPaperRecycle,
236b1f0e   梁保满   周末-飞书bug
163
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
164
165
          children: []
        },
e5e4a3e6   梁保满   v1.3
166
167
168
169
170
171
172
173
174
        {
          path: "/examinationPaperArchiving",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperArchiving,
          parent: "examinationPaper",
          hidden: true,
          children: []
        },
13b58a42   梁保满   备题组卷部分前端页面基本完成
175
176
177
178
179
180
181
182
183
184
185
186
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
187
188
          name: "ask",
          name: "随堂问报表",
13b58a42   梁保满   备题组卷部分前端页面基本完成
189
          component: Ask,
236b1f0e   梁保满   周末-飞书bug
190
191
192
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
193
194
195
196
197
198
199
200
          children: []
  
        },
        {
          path: "/askAnalysis",
          iconCls: "", // 图标样式class
          name: "随堂问报表分析",
          component: AskAnalysis,
236b1f0e   梁保满   周末-飞书bug
201
          parent: "ask",
13b58a42   梁保满   备题组卷部分前端页面基本完成
202
          children: []
e5e4a3e6   梁保满   v1.3
203
204
205
206
207
208
209
210
211
        },
        {
          path: "/askArchiving",
          iconCls: "", // 图标样式class
          name: "随堂问已归档报表分析",
          component: AskArchiving,
          parent: "ask",
          hidden: true,
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
        }
      ]
    },
    {
      path: "/test",
      iconCls: "fa fa-pie-chart", // 图标样式class
      name: "即时测报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/test",
          iconCls: "fa fa-pie-chart", // 图标样式class
          name: "",
          component: Test,
236b1f0e   梁保满   周末-飞书bug
227
228
229
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
230
231
232
233
234
235
236
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: TestAnalysis,
236b1f0e   梁保满   周末-飞书bug
237
          parent: "test",
13b58a42   梁保满   备题组卷部分前端页面基本完成
238
          children: []
e5e4a3e6   梁保满   v1.3
239
240
241
242
243
244
245
246
247
        },
        {
          path: "/testArchiving",
          iconCls: "", // 图标样式class
          name: "即时测已归档报表分析",
          component: TestArchiving,
          parent: "test",
          hidden: true,
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
248
249
250
251
        }
  
      ]
    },
13b58a42   梁保满   备题组卷部分前端页面基本完成
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
    {
      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: []
        },
      ]
    },
    {
      path: "/",
      iconCls: "fa fa-cog",
6d7bd862   梁保满   飞书bug
287
      name: '学校管理',
13b58a42   梁保满   备题组卷部分前端页面基本完成
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
      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: []
        },
e5e4a3e6   梁保满   v1.3
311
312
313
314
315
316
317
318
        {
          path: "/archivedClazz",
          iconCls: "fa fa-list-ul",
          name: '已归档班级',
          component: ArchivedClazz,
          hidden: true,
          children: []
        },
13b58a42   梁保满   备题组卷部分前端页面基本完成
319
320
      ]
    },
533a17d8   梁保满   备题组卷添加批量设置答案
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
    {
      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   梁保满   备题组卷部分前端页面基本完成
337
338
339
340
341
342
343
344
345
346
347
348
    {
      path: "/device",
      iconCls: "fa fa-dashboard", // 图标样式class
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "",
          component: Device,
5be3bb70   梁保满   切换账号,缓存组件接口报错问题
349
350
351
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
352
          children: []
db11048f   阿宝   设备状态,学校管理
353
354
355
356
357
358
        },
        {
          path: "/deviceLog",
          iconCls: "fa fa-list-alt", // 图标样式class
          name: "",
          component: DeviceLog,
236b1f0e   梁保满   周末-飞书bug
359
          parent: "device",
db11048f   阿宝   设备状态,学校管理
360
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
        }
      ]
    },
    {
      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
399
          parent: "down",
13b58a42   梁保满   备题组卷部分前端页面基本完成
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
          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   梁保满   隐藏学生画像
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
    // {
    //   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   梁保满   备题组卷部分前端页面基本完成
447
  ]
e5e4a3e6   梁保满   v1.3
448
  let csAddrouters = [
3617eaad   梁保满   长水账号设置
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
    {
      path: "/examinationPaper",
      iconCls: "fa fa-file-text", // 图标样式class
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
          iconCls: "fa fa-file-text", // 图标样式class
          name: "examinationPaper",
          component: CSExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
          name: "examinationPaperAdd",
          component: CSExaminationPaperAdd,
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: CSExaminationPaperEdit,
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
e5e4a3e6   梁保满   v1.3
482
          name: "回收站答题卡",
3617eaad   梁保满   长水账号设置
483
484
485
486
          component: CSExaminationPaperRecycle,
          parent: "examinationPaper",
          children: []
        },
e5e4a3e6   梁保满   v1.3
487
488
489
490
491
492
493
494
495
        {
          path: "/examinationPaperArchiving",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperArchiving,
          parent: "examinationPaper",
          hidden: true,
          children: []
        },
3617eaad   梁保满   长水账号设置
496
497
498
499
500
501
502
503
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
          name: "ask",
          name: "随堂问报表",
          component: Ask,
          meta: {
            keepAlive: true,
          },
          children: []
  
        },
        {
          path: "/askAnalysis",
          iconCls: "", // 图标样式class
          name: "随堂问报表分析",
          component: AskAnalysis,
          parent: "ask",
          children: []
        }
      ]
    },
    {
      path: "/test",
      iconCls: "fa fa-pie-chart", // 图标样式class
      name: "即时测报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/test",
          iconCls: "fa fa-pie-chart", // 图标样式class
          name: "",
          component: Test,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: TestAnalysis,
          parent: "test",
          children: []
        }
  
      ]
    },
    {
      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: []
        },
      ]
    },
    {
      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",
      iconCls: "fa fa-id-card", // 图标样式class
      name: "发卡记录",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/card",
          iconCls: "fa fa-id-card", // 图标样式class
          name: "",
          component: Card,
          children: []
        }
      ]
    },
    {
      path: "/device",
      iconCls: "fa fa-dashboard", // 图标样式class
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "",
          component: Device,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/deviceLog",
          iconCls: "fa fa-list-alt", // 图标样式class
          name: "",
          component: DeviceLog,
          parent: "device",
          children: []
        }
      ]
    },
    {
      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,
          parent: "down",
          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: []
        }
      ]
    },
  ]
13b58a42   梁保满   备题组卷部分前端页面基本完成
716
  
77ebf04d   梁保满   个人版
717
718
  const addroutersPersonal = [
    {
03bce046   梁保满   个人版调整
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
      path: "/setUpStudent",
      iconCls: "fa fa-mortar-board",
      name: '班级名单',
      component: Layout,
      alone: true,
      children: [
        {
          path: "/setUpStudent",
          iconCls: "a fa-mortar-board",
          name: '',
          component: PersonalSetUpStudent,
          children: []
        },
      ]
    },
    {
77ebf04d   梁保满   个人版
735
736
737
738
739
740
741
742
743
744
      path: "/examinationPaper",
      iconCls: "fa fa-file-text", // 图标样式class
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
          iconCls: "fa fa-file-text", // 图标样式class
          name: "examinationPaper",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
745
          component: ExaminationPaper,
77ebf04d   梁保满   个人版
746
747
748
749
750
751
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
          name: "examinationPaperAdd",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
752
          component: ExaminationPaperAdd,
77ebf04d   梁保满   个人版
753
754
755
756
757
758
759
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
760
          component: ExaminationPaperEdit,
77ebf04d   梁保满   个人版
761
762
763
764
765
766
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
e5e4a3e6   梁保满   v1.3
767
          name: "回收站答题卡",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
768
          component: ExaminationPaperRecycle,
77ebf04d   梁保满   个人版
769
770
771
          parent: "examinationPaper",
          children: []
        },
e5e4a3e6   梁保满   v1.3
772
773
774
775
776
777
778
779
780
        {
          path: "/examinationPaperArchiving",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperArchiving,
          parent: "examinationPaper",
          hidden: true,
          children: []
        },
77ebf04d   梁保满   个人版
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
          name: "ask",
          name: "随堂问报表",
          component: PersonalAsk,
          meta: {
            keepAlive: true,
          },
          children: []
  
        },
        {
          path: "/askAnalysis",
          iconCls: "", // 图标样式class
          name: "随堂问报表分析",
          component: PersonalAskAnalysis,
          parent: "ask",
          children: []
e5e4a3e6   梁保满   v1.3
809
810
811
812
813
814
815
816
817
        },
        {
          path: "/askArchiving",
          iconCls: "", // 图标样式class
          name: "随堂已归档问报表分析",
          component: PersonalArchiving,
          parent: "ask",
          hidden:true,
          children: []
77ebf04d   梁保满   个人版
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
        }
      ]
    },
    {
      path: "/test",
      iconCls: "fa fa-pie-chart", // 图标样式class
      name: "即时测报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/test",
          iconCls: "fa fa-pie-chart", // 图标样式class
          name: "",
          component: PersonalTest,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: PersonalTestAnalysis,
          parent: "test",
          children: []
e5e4a3e6   梁保满   v1.3
845
846
847
848
849
850
851
852
853
        },
        {
          path: "/testArchiving",
          iconCls: "", // 图标样式class
          name: "即时已归档测报表分析",
          component: PersonalTestArchiving,
          parent: "test",
          hidden:true,
          children: []
77ebf04d   梁保满   个人版
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
        }
  
      ]
    },
    {
      path: "/portrait",
      iconCls: "fa fa-users", // 图标样式class
      name: "学生画像",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/portrait",
          iconCls: "fa fa-users", // 图标样式class
          name: "",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
869
          component: Portrait,
77ebf04d   梁保满   个人版
870
871
872
873
874
875
876
877
878
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/portraitDetail",
          iconCls: "", // 图标样式class
          name: "授课端软件",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
879
          component: PortraitDetail,
77ebf04d   梁保满   个人版
880
881
882
883
884
885
          parent: "down",
          children: []
        }
      ]
    },
    {
03bce046   梁保满   个人版调整
886
887
888
      path: "/dataSync",
      iconCls: "fa fa-random", // 图标样式class
      name: "数据同步",
77ebf04d   梁保满   个人版
889
890
891
892
      component: Layout,
      alone: true,
      children: [
        {
03bce046   梁保满   个人版调整
893
894
895
896
          path: "/dataSync",
          iconCls: "fa fa-random", // 图标样式class
          name: "",
          component: PersonalDataSync,
77ebf04d   梁保满   个人版
897
          children: []
03bce046   梁保满   个人版调整
898
        }
77ebf04d   梁保满   个人版
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
      ]
    },
    {
      path: "/down",
      iconCls: "fa fa-download", // 图标样式class
      name: "软件下载",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/down",
          iconCls: "fa fa-download", // 图标样式class
          name: "发卡软件",
          component: PersonalDown,
          children: []
        }
      ]
    },
77ebf04d   梁保满   个人版
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
  ]
  
  const addRoutersAdmin = [
    {
      path: "/account",
      iconCls: "fa fa-id-card-o", // 图标样式class
      name: "账号管理",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/account",
          iconCls: "fa fa-id-card-o",
          name: '',
          component: AdminAccount,
          children: []
        },
      ]
    },
    {
      path: "/device",
      iconCls: "fa fa-dashboard", // 图标样式class
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "",
          component: AdminDevice,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/deviceLog",
          iconCls: "fa fa-list-alt", // 图标样式class
          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   梁保满   权限配置,路由基础设置
981
982
983
  export default new Router({
    routes: defaultRouter
  })
e5e4a3e6   梁保满   v1.3
984
  export { defaultRouter, addrouters, addroutersPersonal, addRoutersAdmin, csAddrouters }