Blame view

src/router/index.js 15.1 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")
77ebf04d   梁保满   个人版
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
  const ExaminationPaper = () => import("@/views/standard/examinationPaper/index")
  const ExaminationPaperAdd = () => import("@/views/standard/examinationPaper/add")
  const ExaminationPaperEdit = () => import("@/views/standard/examinationPaper/edit")
  const ExaminationPaperRecycle = () => import("@/views/standard/examinationPaper/recycle")
  const Ask = () => import("@/views/standard/ask/index")
  const AskAnalysis = () => import("@/views/standard/ask/analysis")
  const Test = () => import("@/views/standard/test/index")
  const TestAnalysis = () => import("@/views/standard/test/analysis")
  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")
  const SetUpStudent = () => import("@/views/standard/setUp/student")
  const SetUpTeacher = () => import("@/views/standard/setUp/teacher")
  
  const PersonalExaminationPaper = () => import("@/views/personal/examinationPaper/index")
  const PersonalExaminationPaperAdd = () => import("@/views/personal/examinationPaper/add")
  const PersonalExaminationPaperEdit = () => import("@/views/personal/examinationPaper/edit")
  const PersonalExaminationPaperRecycle = () => import("@/views/personal/examinationPaper/recycle")
  const PersonalAsk = () => import("@/views/personal/ask/index")
  const PersonalAskAnalysis = () => import("@/views/personal/ask/analysis")
  const PersonalTest = () => import("@/views/personal/test/index")
  const PersonalTestAnalysis = () => import("@/views/personal/test/analysis")
  const PersonalDataSync = () => import("@/views/personal/dataSync/index")
  const PersonalPortrait = () => import("@/views/personal/portrait/index")
  const PersonalPortraitDetail = () => import("@/views/personal/portrait/detail")
  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   梁保满   权限配置,路由基础设置
51
52
53
54
55
  
  /**
   * 重写路由的push方法
   */
  const routerPush = Router.prototype.push
236b1f0e   梁保满   周末-飞书bug
56
  Router.prototype.push = function push(location) {
c1b532ad   梁保满   权限配置,路由基础设置
57
58
59
60
61
    return routerPush.call(this, location).catch(error => error)
  }
  Vue.use(Router)
  let routeName = en.routeName
  let defaultRouter = [
236b1f0e   梁保满   周末-飞书bug
62
63
    {
      path: "/",
c1b532ad   梁保满   权限配置,路由基础设置
64
65
66
67
68
69
70
71
72
73
74
75
76
      redirect: "/index",
      hidden: true,
      children: []
    },
    {
      path: "/login",
      component: Login,
      name: "登录",
      hidden: true,
      children: []
    },
    {
      path: "/index",
4c4f7640   梁保满   路由表,路由前端文件
77
78
      iconCls: "fa fa-home", // 图标样式class
      name: "应用首页",
c1b532ad   梁保满   权限配置,路由基础设置
79
80
81
82
83
84
85
86
87
88
89
90
      component: Layout,
      alone: true,
      children: [
        {
          path: "/index",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "主页",
          component: HomeMain,
          children: []
        }
      ]
    },
e823fb79   阿宝   集团管理员
91
    {
77ebf04d   梁保满   个人版
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
      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   梁保满   权限配置,路由基础设置
108
109
110
111
112
113
114
115
      path: "/404",
      component: NotFound,
      name: "404",
      hidden: true,
      children: []
    }
  ]
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
116
117
118
119
120
121
122
123
124
125
126
  let addrouters = [  //测试用,后续后端获取
    {
      path: "/examinationPaper",
      iconCls: "fa fa-file-text", // 图标样式class
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
          iconCls: "fa fa-file-text", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
127
          name: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
128
129
130
131
132
133
          component: ExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
134
          name: "examinationPaperAdd",
13b58a42   梁保满   备题组卷部分前端页面基本完成
135
          component: ExaminationPaperAdd,
236b1f0e   梁保满   周末-飞书bug
136
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
137
138
139
140
141
142
143
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: ExaminationPaperEdit,
236b1f0e   梁保满   周末-飞书bug
144
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
145
146
147
148
149
150
151
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperRecycle,
236b1f0e   梁保满   周末-飞书bug
152
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
153
154
155
156
157
158
159
160
161
162
163
164
165
166
          children: []
        },
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
167
168
          name: "ask",
          name: "随堂问报表",
13b58a42   梁保满   备题组卷部分前端页面基本完成
169
          component: Ask,
236b1f0e   梁保满   周末-飞书bug
170
171
172
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
173
174
175
176
177
178
179
180
          children: []
  
        },
        {
          path: "/askAnalysis",
          iconCls: "", // 图标样式class
          name: "随堂问报表分析",
          component: AskAnalysis,
236b1f0e   梁保满   周末-飞书bug
181
          parent: "ask",
13b58a42   梁保满   备题组卷部分前端页面基本完成
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
          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,
236b1f0e   梁保满   周末-飞书bug
198
199
200
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
201
202
203
204
205
206
207
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: TestAnalysis,
236b1f0e   梁保满   周末-飞书bug
208
          parent: "test",
13b58a42   梁保满   备题组卷部分前端页面基本完成
209
210
211
212
213
          children: []
        }
  
      ]
    },
13b58a42   梁保满   备题组卷部分前端页面基本完成
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
    {
      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
249
      name: '学校管理',
13b58a42   梁保满   备题组卷部分前端页面基本完成
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
      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: []
        },
      ]
    },
533a17d8   梁保满   备题组卷添加批量设置答案
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
    {
      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   梁保满   备题组卷部分前端页面基本完成
291
292
293
294
295
296
297
298
299
300
301
302
    {
      path: "/device",
      iconCls: "fa fa-dashboard", // 图标样式class
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "",
          component: Device,
5be3bb70   梁保满   切换账号,缓存组件接口报错问题
303
304
305
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
306
          children: []
db11048f   阿宝   设备状态,学校管理
307
308
309
310
311
312
        },
        {
          path: "/deviceLog",
          iconCls: "fa fa-list-alt", // 图标样式class
          name: "",
          component: DeviceLog,
236b1f0e   梁保满   周末-飞书bug
313
          parent: "device",
db11048f   阿宝   设备状态,学校管理
314
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
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
349
350
351
352
        }
      ]
    },
    {
      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
353
          parent: "down",
13b58a42   梁保满   备题组卷部分前端页面基本完成
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
          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   梁保满   备题组卷部分前端页面基本完成
374
375
  ]
  
77ebf04d   梁保满   个人版
376
377
  const addroutersPersonal = [
    {
03bce046   梁保满   个人版调整
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
      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   梁保满   个人版
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
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
447
448
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
      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: PersonalExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
          name: "examinationPaperAdd",
          component: PersonalExaminationPaperAdd,
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: PersonalExaminationPaperEdit,
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: PersonalExaminationPaperRecycle,
          parent: "examinationPaper",
          children: []
        },
      ]
    },
    {
      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: []
        }
      ]
    },
    {
      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: []
        }
  
      ]
    },
    {
      path: "/portrait",
      iconCls: "fa fa-users", // 图标样式class
      name: "学生画像",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/portrait",
          iconCls: "fa fa-users", // 图标样式class
          name: "",
          component: PersonalPortrait,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/portraitDetail",
          iconCls: "", // 图标样式class
          name: "授课端软件",
          component: PersonalPortraitDetail,
          parent: "down",
          children: []
        }
      ]
    },
    {
03bce046   梁保满   个人版调整
518
519
520
      path: "/dataSync",
      iconCls: "fa fa-random", // 图标样式class
      name: "数据同步",
77ebf04d   梁保满   个人版
521
522
523
524
      component: Layout,
      alone: true,
      children: [
        {
03bce046   梁保满   个人版调整
525
526
527
528
          path: "/dataSync",
          iconCls: "fa fa-random", // 图标样式class
          name: "",
          component: PersonalDataSync,
77ebf04d   梁保满   个人版
529
          children: []
03bce046   梁保满   个人版调整
530
        }
77ebf04d   梁保满   个人版
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
      ]
    },
    {
      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   梁保满   个人版
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
  ]
  
  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   梁保满   权限配置,路由基础设置
613
614
615
  export default new Router({
    routes: defaultRouter
  })
77ebf04d   梁保满   个人版
616
  export { defaultRouter, addrouters,addroutersPersonal,addRoutersAdmin }