Blame view

src/router/index.js 24.3 KB
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")
4c2f99b0   梁保满   修改组卷
12
  const ExaminationPaperAddAsk = () => import("@/views/examinationPaper/addAsk")
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  const AskAnalysis = () => import("@/views/basic/ask/analysis")
  const AskArchiving = () => import("@/views/basic/ask/archiving")
  const Test = () => import("@/views/basic/test/index")
  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   梁保满   教师学生管理,设备状态
39
  const SetUpPersonalSetUpStudent = () => import("@/views/basic/setUp/PersonalStudent")
6dc19f47   梁保满   路由及文件名调整
40
  const ArchivedClazz = () => import("@/views/basic/setUp/archivedClazz")
d01c5799   梁保满   随堂问 报表开发
41
  const UserInfo = () => import("@/views/basic/userInfo/index")
77ebf04d   梁保满   个人版
42
  
6dc19f47   梁保满   路由及文件名调整
43
  // 个人版
d01c5799   梁保满   随堂问 报表开发
44
45
46
47
48
49
50
51
52
53
54
  // 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   梁保满   个人版
55
  
6dc19f47   梁保满   路由及文件名调整
56
  // 超级管理员
77ebf04d   梁保满   个人版
57
58
59
60
  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   梁保满   权限配置,路由基础设置
61
62
  
  /**
8ef22809   梁保满   软件下载页面添加.net环境下载
63
64
   * v1.4 
   */
6dc19f47   梁保满   路由及文件名调整
65
66
67
  const SetUpClazz = () => import("@/views/basic/setUp/clazz")
  const Archived = () => import("@/views/basic/setUp/archived")
  const DeviceError = () => import("@/views/basic/device/error")
8ef22809   梁保满   软件下载页面添加.net环境下载
68
69
  
  /**
c1b532ad   梁保满   权限配置,路由基础设置
70
71
72
   * 重写路由的push方法
   */
  const routerPush = Router.prototype.push
236b1f0e   梁保满   周末-飞书bug
73
  Router.prototype.push = function push(location) {
c1b532ad   梁保满   权限配置,路由基础设置
74
75
76
    return routerPush.call(this, location).catch(error => error)
  }
  Vue.use(Router)
c1b532ad   梁保满   权限配置,路由基础设置
77
  let defaultRouter = [
236b1f0e   梁保满   周末-飞书bug
78
79
    {
      path: "/",
c1b532ad   梁保满   权限配置,路由基础设置
80
81
82
83
84
85
86
87
88
89
90
91
92
      redirect: "/index",
      hidden: true,
      children: []
    },
    {
      path: "/login",
      component: Login,
      name: "登录",
      hidden: true,
      children: []
    },
    {
      path: "/index",
4c4f7640   梁保满   路由表,路由前端文件
93
94
      iconCls: "fa fa-home", // 图标样式class
      name: "应用首页",
c1b532ad   梁保满   权限配置,路由基础设置
95
96
97
98
99
100
101
102
103
104
105
106
      component: Layout,
      alone: true,
      children: [
        {
          path: "/index",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "主页",
          component: HomeMain,
          children: []
        }
      ]
    },
e823fb79   阿宝   集团管理员
107
    {
8ef22809   梁保满   软件下载页面添加.net环境下载
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
      path: "/deviceError",
      iconCls: "fa fa-home", // 图标样式class
      name: "异常设备信息",
      component: Layout,
      hidden: true,
      children: [
        {
          path: "/deviceError",
          name: "异常设备信息",
          component: DeviceError,
          hidden: true
        }
      ]
    },
    {
77ebf04d   梁保满   个人版
123
124
125
126
127
128
129
130
131
132
      path: "/userInfo",
      iconCls: "fa fa-user", // 图标样式class
      name: "个人信息",
      component: Layout,
      hidden: true,
      children: [
        {
          path: "/userInfo",
          iconCls: "fa fa-user", // 图标样式class
          name: "个人信息",
d01c5799   梁保满   随堂问 报表开发
133
          component: UserInfo,
77ebf04d   梁保满   个人版
134
135
136
137
138
          children: []
        }
      ]
    },
    {
c1b532ad   梁保满   权限配置,路由基础设置
139
140
141
142
143
144
145
      path: "/404",
      component: NotFound,
      name: "404",
      hidden: true,
      children: []
    }
  ]
6dc19f47   梁保满   路由及文件名调整
146
  //标准版路由表
e5e4a3e6   梁保满   v1.3
147
  let addrouters = [
13b58a42   梁保满   备题组卷部分前端页面基本完成
148
149
150
151
152
153
154
155
156
157
    {
      path: "/examinationPaper",
      iconCls: "fa fa-file-text", // 图标样式class
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
          iconCls: "fa fa-file-text", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
158
          name: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
159
160
161
162
163
164
          component: ExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
165
          name: "examinationPaperAdd",
13b58a42   梁保满   备题组卷部分前端页面基本完成
166
          component: ExaminationPaperAdd,
236b1f0e   梁保满   周末-飞书bug
167
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
168
169
170
          children: []
        },
        {
4c2f99b0   梁保满   修改组卷
171
172
173
174
175
176
177
178
          path: "/examinationPaperAddAsk",
          iconCls: "", // 图标样式class
          name: "examinationPaperAddAsk",
          component: ExaminationPaperAddAsk,
          parent: "examinationPaper",
          children: []
        },
        {
13b58a42   梁保满   备题组卷部分前端页面基本完成
179
180
181
182
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: ExaminationPaperEdit,
236b1f0e   梁保满   周末-飞书bug
183
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
184
185
186
187
188
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
e5e4a3e6   梁保满   v1.3
189
          name: "回收站答题卡",
13b58a42   梁保满   备题组卷部分前端页面基本完成
190
          component: ExaminationPaperRecycle,
236b1f0e   梁保满   周末-飞书bug
191
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
192
193
          children: []
        },
e5e4a3e6   梁保满   v1.3
194
195
196
197
198
199
200
201
202
        {
          path: "/examinationPaperArchiving",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperArchiving,
          parent: "examinationPaper",
          hidden: true,
          children: []
        },
13b58a42   梁保满   备题组卷部分前端页面基本完成
203
204
205
206
207
208
209
210
211
212
213
214
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
215
          name: "随堂问报表",
13b58a42   梁保满   备题组卷部分前端页面基本完成
216
          component: Ask,
236b1f0e   梁保满   周末-飞书bug
217
218
219
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
220
221
222
223
          children: []
  
        },
        {
d01c5799   梁保满   随堂问 报表开发
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
          path: "/askList",
          iconCls: "fa fa-bar-chart", // 图标样式class
          name: "随堂问报表",
          component: AskList,
          children: [
            {
              path: "/askAnalysis",
              iconCls: "", // 图标样式class
              name: "随堂问报表分析",
              component: AskAnalysis,
              parent: "askList",
              children: []
            },
  
          ],
e5e4a3e6   梁保满   v1.3
239
240
241
242
243
244
245
246
247
        },
        {
          path: "/askArchiving",
          iconCls: "", // 图标样式class
          name: "随堂问已归档报表分析",
          component: AskArchiving,
          parent: "ask",
          hidden: true,
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
        }
      ]
    },
    {
      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
263
264
265
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
266
267
268
269
270
271
272
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: TestAnalysis,
236b1f0e   梁保满   周末-飞书bug
273
          parent: "test",
13b58a42   梁保满   备题组卷部分前端页面基本完成
274
          children: []
e5e4a3e6   梁保满   v1.3
275
276
277
278
279
280
281
282
283
        },
        {
          path: "/testArchiving",
          iconCls: "", // 图标样式class
          name: "即时测已归档报表分析",
          component: TestArchiving,
          parent: "test",
          hidden: true,
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
284
285
286
287
        }
  
      ]
    },
13b58a42   梁保满   备题组卷部分前端页面基本完成
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
    {
      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
323
      name: '学校管理',
13b58a42   梁保满   备题组卷部分前端页面基本完成
324
325
326
327
328
329
330
331
332
333
      component: Layout,
      children: [
        {
          path: "/setUpSchool",
          iconCls: "fa fa-calculator",
          name: '学校设置',
          component: SetUpSchool,
          children: []
        },
        {
0454f787   梁保满   班级管理,班级列表修改,科目设置
334
335
336
337
338
339
340
          path: "/setUpClazz",
          iconCls: "fa fa-sitemap",
          name: '班级管理',
          component: SetUpClazz,
          children: []
        },
        {
13b58a42   梁保满   备题组卷部分前端页面基本完成
341
342
343
344
345
346
347
348
349
350
351
352
353
          path: "/setUpTeacher",
          iconCls: "fa fa-male",
          name: '教师管理',
          component: SetUpTeacher,
          children: []
        },
        {
          path: "/setUpStudent",
          iconCls: "fa fa-mortar-board",
          name: '学生管理',
          component: SetUpStudent,
          children: []
        },
e5e4a3e6   梁保满   v1.3
354
355
356
357
358
359
360
361
        {
          path: "/archivedClazz",
          iconCls: "fa fa-list-ul",
          name: '已归档班级',
          component: ArchivedClazz,
          hidden: true,
          children: []
        },
dc56294d   梁保满   班级分班
362
363
364
365
366
367
368
369
        {
          path: "/archived",
          iconCls: "fa fa-list-ul",
          name: '分班',
          component: Archived,
          hidden: true,
          children: []
        },
13b58a42   梁保满   备题组卷部分前端页面基本完成
370
371
      ]
    },
533a17d8   梁保满   备题组卷添加批量设置答案
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
    {
      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   梁保满   备题组卷部分前端页面基本完成
388
389
390
391
392
393
394
395
396
397
398
399
    {
      path: "/device",
      iconCls: "fa fa-dashboard", // 图标样式class
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "",
          component: Device,
5be3bb70   梁保满   切换账号,缓存组件接口报错问题
400
401
402
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
403
          children: []
db11048f   阿宝   设备状态,学校管理
404
405
406
407
408
409
        },
        {
          path: "/deviceLog",
          iconCls: "fa fa-list-alt", // 图标样式class
          name: "",
          component: DeviceLog,
236b1f0e   梁保满   周末-飞书bug
410
          parent: "device",
db11048f   阿宝   设备状态,学校管理
411
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
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
        }
      ]
    },
    {
      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
450
          parent: "down",
13b58a42   梁保满   备题组卷部分前端页面基本完成
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
          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   梁保满   隐藏学生画像
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
    // {
    //   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   梁保满   备题组卷部分前端页面基本完成
498
  ]
6dc19f47   梁保满   路由及文件名调整
499
  //长水版路由表
e5e4a3e6   梁保满   v1.3
500
  let csAddrouters = [
3617eaad   梁保满   长水账号设置
501
502
    {
      path: "/examinationPaper",
d01c5799   梁保满   随堂问 报表开发
503
      iconCls: "fa fa-file-text",
3617eaad   梁保满   长水账号设置
504
505
506
507
508
509
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
d01c5799   梁保满   随堂问 报表开发
510
          iconCls: "fa fa-file-text",
3617eaad   梁保满   长水账号设置
511
          name: "examinationPaper",
6dc19f47   梁保满   路由及文件名调整
512
          component: ExaminationPaper,
3617eaad   梁保满   长水账号设置
513
514
515
516
          children: []
        },
        {
          path: "/examinationPaperAdd",
d01c5799   梁保满   随堂问 报表开发
517
          iconCls: "",
3617eaad   梁保满   长水账号设置
518
          name: "examinationPaperAdd",
6dc19f47   梁保满   路由及文件名调整
519
          component: ExaminationPaperAdd,
3617eaad   梁保满   长水账号设置
520
521
522
523
524
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperEdit",
d01c5799   梁保满   随堂问 报表开发
525
          iconCls: "",
3617eaad   梁保满   长水账号设置
526
          name: "修改答题卡",
6dc19f47   梁保满   路由及文件名调整
527
          component: ExaminationPaperEdit,
3617eaad   梁保满   长水账号设置
528
529
530
531
532
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperRecycle",
d01c5799   梁保满   随堂问 报表开发
533
          iconCls: "",
e5e4a3e6   梁保满   v1.3
534
          name: "回收站答题卡",
6dc19f47   梁保满   路由及文件名调整
535
          component: ExaminationPaperRecycle,
3617eaad   梁保满   长水账号设置
536
537
538
          parent: "examinationPaper",
          children: []
        },
e5e4a3e6   梁保满   v1.3
539
540
        {
          path: "/examinationPaperArchiving",
d01c5799   梁保满   随堂问 报表开发
541
          iconCls: "",
e5e4a3e6   梁保满   v1.3
542
543
544
545
546
547
          name: "已归档答题卡",
          component: ExaminationPaperArchiving,
          parent: "examinationPaper",
          hidden: true,
          children: []
        },
3617eaad   梁保满   长水账号设置
548
549
550
551
      ]
    },
    {
      path: "/ask",
d01c5799   梁保满   随堂问 报表开发
552
      iconCls: "fa fa-bar-chart",
3617eaad   梁保满   长水账号设置
553
554
555
556
557
558
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
d01c5799   梁保满   随堂问 报表开发
559
          iconCls: "fa fa-bar-chart",
3617eaad   梁保满   长水账号设置
560
561
562
563
564
565
566
567
568
569
570
          name: "ask",
          name: "随堂问报表",
          component: Ask,
          meta: {
            keepAlive: true,
          },
          children: []
  
        },
        {
          path: "/askAnalysis",
d01c5799   梁保满   随堂问 报表开发
571
          iconCls: "",
3617eaad   梁保满   长水账号设置
572
573
574
575
576
577
578
579
580
          name: "随堂问报表分析",
          component: AskAnalysis,
          parent: "ask",
          children: []
        }
      ]
    },
    {
      path: "/test",
d01c5799   梁保满   随堂问 报表开发
581
      iconCls: "fa fa-pie-chart",
3617eaad   梁保满   长水账号设置
582
583
584
585
586
587
      name: "即时测报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/test",
d01c5799   梁保满   随堂问 报表开发
588
          iconCls: "fa fa-pie-chart",
3617eaad   梁保满   长水账号设置
589
590
591
592
593
594
595
596
597
          name: "",
          component: Test,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/testAnalysis",
d01c5799   梁保满   随堂问 报表开发
598
          iconCls: "",
3617eaad   梁保满   长水账号设置
599
600
601
602
603
604
605
606
607
608
          name: "即时测报表分析",
          component: TestAnalysis,
          parent: "test",
          children: []
        }
  
      ]
    },
    {
      path: "/setUpConglomerate",
d01c5799   梁保满   随堂问 报表开发
609
      iconCls: "fa fa-building",
3617eaad   梁保满   长水账号设置
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
      name: "学校管理",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/setUpConglomerate",
          iconCls: "fa fa-building",
          name: '集团管理',
          component: SetUpConglomerate,
          children: []
        },
      ]
    },
    {
      path: "/setUpAccount",
d01c5799   梁保满   随堂问 报表开发
625
      iconCls: "fa fa-id-card-o",
3617eaad   梁保满   长水账号设置
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
      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   梁保满   随堂问 报表开发
670
      iconCls: "fa fa-id-card",
3617eaad   梁保满   长水账号设置
671
672
673
674
675
676
      name: "发卡记录",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/card",
d01c5799   梁保满   随堂问 报表开发
677
          iconCls: "fa fa-id-card",
3617eaad   梁保满   长水账号设置
678
679
680
681
682
683
684
685
          name: "",
          component: Card,
          children: []
        }
      ]
    },
    {
      path: "/device",
d01c5799   梁保满   随堂问 报表开发
686
      iconCls: "fa fa-dashboard",
3617eaad   梁保满   长水账号设置
687
688
689
690
691
692
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
d01c5799   梁保满   随堂问 报表开发
693
          iconCls: "fa fa-dashboard",
3617eaad   梁保满   长水账号设置
694
695
696
697
698
699
700
701
702
          name: "",
          component: Device,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/deviceLog",
d01c5799   梁保满   随堂问 报表开发
703
          iconCls: "fa fa-list-alt",
3617eaad   梁保满   长水账号设置
704
705
706
707
708
709
710
711
712
          name: "",
          component: DeviceLog,
          parent: "device",
          children: []
        }
      ]
    },
    {
      path: "/analysis",
d01c5799   梁保满   随堂问 报表开发
713
      iconCls: "fa fa-area-chart",
3617eaad   梁保满   长水账号设置
714
715
716
717
718
719
      name: "使用分析",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/analysis",
d01c5799   梁保满   随堂问 报表开发
720
          iconCls: "fa fa-area-chart",
3617eaad   梁保满   长水账号设置
721
722
723
724
725
726
727
728
          name: "",
          component: Analysis,
          children: []
        }
      ]
    },
    {
      path: "/down",
d01c5799   梁保满   随堂问 报表开发
729
      iconCls: "fa fa-download",
3617eaad   梁保满   长水账号设置
730
731
732
733
734
735
      name: "软件下载",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/down",
d01c5799   梁保满   随堂问 报表开发
736
          iconCls: "fa fa-download",
3617eaad   梁保满   长水账号设置
737
738
739
740
741
742
          name: "发卡软件",
          component: Down,
          children: []
        },
        {
          path: "/downClient",
d01c5799   梁保满   随堂问 报表开发
743
          iconCls: "",
3617eaad   梁保满   长水账号设置
744
745
746
747
748
749
750
751
752
          name: "授课端软件",
          component: DownClient,
          parent: "down",
          children: []
        }
      ]
    },
    {
      path: "/dataSync",
d01c5799   梁保满   随堂问 报表开发
753
      iconCls: "fa fa-random",
3617eaad   梁保满   长水账号设置
754
755
756
757
758
759
      name: "数据同步",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/dataSync",
d01c5799   梁保满   随堂问 报表开发
760
          iconCls: "fa fa-random",
3617eaad   梁保满   长水账号设置
761
762
763
764
765
766
767
          name: "",
          component: DataSync,
          children: []
        }
      ]
    },
  ]
13b58a42   梁保满   备题组卷部分前端页面基本完成
768
  
6dc19f47   梁保满   路由及文件名调整
769
  //个人版版路由表
77ebf04d   梁保满   个人版
770
771
  const addroutersPersonal = [
    {
03bce046   梁保满   个人版调整
772
773
774
775
776
777
778
779
780
781
      path: "/setUpStudent",
      iconCls: "fa fa-mortar-board",
      name: '班级名单',
      component: Layout,
      alone: true,
      children: [
        {
          path: "/setUpStudent",
          iconCls: "a fa-mortar-board",
          name: '',
8ad80958   梁保满   教师学生管理,设备状态
782
          component: SetUpPersonalSetUpStudent,
03bce046   梁保满   个人版调整
783
784
785
786
787
          children: []
        },
      ]
    },
    {
77ebf04d   梁保满   个人版
788
      path: "/examinationPaper",
d01c5799   梁保满   随堂问 报表开发
789
      iconCls: "fa fa-file-text",
77ebf04d   梁保满   个人版
790
791
792
793
794
795
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
d01c5799   梁保满   随堂问 报表开发
796
          iconCls: "fa fa-file-text",
77ebf04d   梁保满   个人版
797
          name: "examinationPaper",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
798
          component: ExaminationPaper,
77ebf04d   梁保满   个人版
799
800
801
802
          children: []
        },
        {
          path: "/examinationPaperAdd",
d01c5799   梁保满   随堂问 报表开发
803
          iconCls: "",
77ebf04d   梁保满   个人版
804
          name: "examinationPaperAdd",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
805
          component: ExaminationPaperAdd,
77ebf04d   梁保满   个人版
806
807
808
809
          parent: "examinationPaper",
          children: []
        },
        {
4c2f99b0   梁保满   修改组卷
810
          path: "/examinationPaperAddAsk",
d01c5799   梁保满   随堂问 报表开发
811
          iconCls: "",
4c2f99b0   梁保满   修改组卷
812
813
814
815
816
817
          name: "examinationPaperAddAsk",
          component: ExaminationPaperAddAsk,
          parent: "examinationPaper",
          children: []
        },
        {
77ebf04d   梁保满   个人版
818
          path: "/examinationPaperEdit",
d01c5799   梁保满   随堂问 报表开发
819
          iconCls: "",
77ebf04d   梁保满   个人版
820
          name: "修改答题卡",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
821
          component: ExaminationPaperEdit,
77ebf04d   梁保满   个人版
822
823
824
825
826
          parent: "examinationPaper",
          children: []
        },
        {
          path: "/examinationPaperRecycle",
d01c5799   梁保满   随堂问 报表开发
827
          iconCls: "",
e5e4a3e6   梁保满   v1.3
828
          name: "回收站答题卡",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
829
          component: ExaminationPaperRecycle,
77ebf04d   梁保满   个人版
830
831
832
          parent: "examinationPaper",
          children: []
        },
e5e4a3e6   梁保满   v1.3
833
834
        {
          path: "/examinationPaperArchiving",
d01c5799   梁保满   随堂问 报表开发
835
          iconCls: "",
e5e4a3e6   梁保满   v1.3
836
837
838
839
840
841
          name: "已归档答题卡",
          component: ExaminationPaperArchiving,
          parent: "examinationPaper",
          hidden: true,
          children: []
        },
77ebf04d   梁保满   个人版
842
843
844
845
      ]
    },
    {
      path: "/ask",
d01c5799   梁保满   随堂问 报表开发
846
      iconCls: "fa fa-bar-chart",
77ebf04d   梁保满   个人版
847
848
849
850
851
852
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
d01c5799   梁保满   随堂问 报表开发
853
          iconCls: "fa fa-bar-chart",
77ebf04d   梁保满   个人版
854
855
          name: "ask",
          name: "随堂问报表",
d01c5799   梁保满   随堂问 报表开发
856
          component: Ask,
77ebf04d   梁保满   个人版
857
          meta: {
d01c5799   梁保满   随堂问 报表开发
858
            keepAlive: false,
77ebf04d   梁保满   个人版
859
860
861
862
863
          },
          children: []
  
        },
        {
d01c5799   梁保满   随堂问 报表开发
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
          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,
              children: []
            }
          ]
e5e4a3e6   梁保满   v1.3
891
        },
77ebf04d   梁保满   个人版
892
893
894
895
      ]
    },
    {
      path: "/test",
d01c5799   梁保满   随堂问 报表开发
896
      iconCls: "fa fa-pie-chart",
77ebf04d   梁保满   个人版
897
898
899
900
901
902
      name: "即时测报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/test",
d01c5799   梁保满   随堂问 报表开发
903
          iconCls: "fa fa-pie-chart",
77ebf04d   梁保满   个人版
904
          name: "",
d01c5799   梁保满   随堂问 报表开发
905
          component: Test,
77ebf04d   梁保满   个人版
906
907
908
909
910
911
912
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/testAnalysis",
d01c5799   梁保满   随堂问 报表开发
913
          iconCls: "",
77ebf04d   梁保满   个人版
914
          name: "即时测报表分析",
d01c5799   梁保满   随堂问 报表开发
915
          component: TestAnalysis,
77ebf04d   梁保满   个人版
916
917
          parent: "test",
          children: []
e5e4a3e6   梁保满   v1.3
918
919
920
        },
        {
          path: "/testArchiving",
d01c5799   梁保满   随堂问 报表开发
921
922
923
          iconCls: "",
          name: "即时测已归档报表分析",
          component: TestArchiving,
e5e4a3e6   梁保满   v1.3
924
          parent: "test",
8ef22809   梁保满   软件下载页面添加.net环境下载
925
          hidden: true,
e5e4a3e6   梁保满   v1.3
926
          children: []
77ebf04d   梁保满   个人版
927
928
929
930
931
932
        }
  
      ]
    },
    {
      path: "/portrait",
d01c5799   梁保满   随堂问 报表开发
933
      iconCls: "fa fa-users",
77ebf04d   梁保满   个人版
934
935
936
937
938
939
      name: "学生画像",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/portrait",
d01c5799   梁保满   随堂问 报表开发
940
          iconCls: "fa fa-users",
77ebf04d   梁保满   个人版
941
          name: "",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
942
          component: Portrait,
77ebf04d   梁保满   个人版
943
944
945
946
947
948
949
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/portraitDetail",
d01c5799   梁保满   随堂问 报表开发
950
          iconCls: "",
77ebf04d   梁保满   个人版
951
          name: "授课端软件",
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
952
          component: PortraitDetail,
77ebf04d   梁保满   个人版
953
954
955
956
957
958
          parent: "down",
          children: []
        }
      ]
    },
    {
03bce046   梁保满   个人版调整
959
      path: "/dataSync",
d01c5799   梁保满   随堂问 报表开发
960
      iconCls: "fa fa-random",
03bce046   梁保满   个人版调整
961
      name: "数据同步",
77ebf04d   梁保满   个人版
962
963
964
965
      component: Layout,
      alone: true,
      children: [
        {
03bce046   梁保满   个人版调整
966
          path: "/dataSync",
d01c5799   梁保满   随堂问 报表开发
967
          iconCls: "fa fa-random",
03bce046   梁保满   个人版调整
968
          name: "",
d01c5799   梁保满   随堂问 报表开发
969
          component: DataSync,
77ebf04d   梁保满   个人版
970
          children: []
03bce046   梁保满   个人版调整
971
        }
77ebf04d   梁保满   个人版
972
973
974
975
      ]
    },
    {
      path: "/down",
d01c5799   梁保满   随堂问 报表开发
976
      iconCls: "fa fa-download",
77ebf04d   梁保满   个人版
977
978
979
980
981
982
      name: "软件下载",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/down",
d01c5799   梁保满   随堂问 报表开发
983
          iconCls: "fa fa-download",
77ebf04d   梁保满   个人版
984
          name: "发卡软件",
d01c5799   梁保满   随堂问 报表开发
985
          component: Down,
77ebf04d   梁保满   个人版
986
987
988
989
          children: []
        }
      ]
    },
77ebf04d   梁保满   个人版
990
991
  ]
  
6dc19f47   梁保满   路由及文件名调整
992
  // 超级管理员路由表
77ebf04d   梁保满   个人版
993
994
995
  const addRoutersAdmin = [
    {
      path: "/account",
d01c5799   梁保满   随堂问 报表开发
996
      iconCls: "fa fa-id-card-o",
77ebf04d   梁保满   个人版
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
      name: "账号管理",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/account",
          iconCls: "fa fa-id-card-o",
          name: '',
          component: AdminAccount,
          children: []
        },
      ]
    },
    {
      path: "/device",
d01c5799   梁保满   随堂问 报表开发
1012
      iconCls: "fa fa-dashboard",
77ebf04d   梁保满   个人版
1013
1014
1015
1016
1017
1018
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
d01c5799   梁保满   随堂问 报表开发
1019
          iconCls: "fa fa-dashboard",
77ebf04d   梁保满   个人版
1020
1021
1022
1023
1024
1025
1026
1027
1028
          name: "",
          component: AdminDevice,
          meta: {
            keepAlive: true,
          },
          children: []
        },
        {
          path: "/deviceLog",
d01c5799   梁保满   随堂问 报表开发
1029
          iconCls: "fa fa-list-alt",
77ebf04d   梁保满   个人版
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
          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   梁保满   权限配置,路由基础设置
1055
1056
1057
  export default new Router({
    routes: defaultRouter
  })
e5e4a3e6   梁保满   v1.3
1058
  export { defaultRouter, addrouters, addroutersPersonal, addRoutersAdmin, csAddrouters }