Blame view

src/router/index.js 8.51 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")
13b58a42   梁保满   备题组卷部分前端页面基本完成
11
12
13
14
15
16
17
18
19
20
21
22
23
  const ExaminationPaper = () => import("@/views/examinationPaper/index")
  const ExaminationPaperAdd = () => import("@/views/examinationPaper/add")
  const ExaminationPaperEdit = () => import("@/views/examinationPaper/edit")
  const ExaminationPaperRecycle = () => import("@/views/examinationPaper/recycle")
  const Ask = () => import("@/views/ask/index")
  const AskAnalysis = () => import("@/views/ask/analysis")
  const Test = () => import("@/views/test/index")
  const TestAnalysis = () => import("@/views/test/analysis")
  const DataSync = () => import("@/views/dataSync/index")
  const Portrait = () => import("@/views/portrait/index")
  const Card = () => import("@/views/card/index")
  const Analysis = () => import("@/views/analysis/index")
  const Device = () => import("@/views/device/index")
db11048f   阿宝   设备状态,学校管理
24
  const DeviceLog = () => import("@/views/device/log")
13b58a42   梁保满   备题组卷部分前端页面基本完成
25
26
27
28
29
30
31
  const Down = () => import("@/views/down/index")
  const DownClient = () => import("@/views/down/client")
  const SetUpAccount = () => import("@/views/setUp/account")
  const SetUpConglomerate = () => import("@/views/setUp/conglomerate")
  const SetUpSchool = () => import("@/views/setUp/school")
  const SetUpStudent = () => import("@/views/setUp/student")
  const SetUpTeacher = () => import("@/views/setUp/teacher")
c1b532ad   梁保满   权限配置,路由基础设置
32
33
34
35
36
  
  /**
   * 重写路由的push方法
   */
  const routerPush = Router.prototype.push
236b1f0e   梁保满   周末-飞书bug
37
  Router.prototype.push = function push(location) {
c1b532ad   梁保满   权限配置,路由基础设置
38
39
40
41
42
    return routerPush.call(this, location).catch(error => error)
  }
  Vue.use(Router)
  let routeName = en.routeName
  let defaultRouter = [
236b1f0e   梁保满   周末-飞书bug
43
44
    {
      path: "/",
c1b532ad   梁保满   权限配置,路由基础设置
45
46
47
48
49
50
51
52
53
54
55
56
57
      redirect: "/index",
      hidden: true,
      children: []
    },
    {
      path: "/login",
      component: Login,
      name: "登录",
      hidden: true,
      children: []
    },
    {
      path: "/index",
4c4f7640   梁保满   路由表,路由前端文件
58
59
      iconCls: "fa fa-home", // 图标样式class
      name: "应用首页",
c1b532ad   梁保满   权限配置,路由基础设置
60
61
62
63
64
65
66
67
68
69
70
71
      component: Layout,
      alone: true,
      children: [
        {
          path: "/index",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "主页",
          component: HomeMain,
          children: []
        }
      ]
    },
e823fb79   阿宝   集团管理员
72
    {
c1b532ad   梁保满   权限配置,路由基础设置
73
74
75
76
77
78
79
80
      path: "/404",
      component: NotFound,
      name: "404",
      hidden: true,
      children: []
    }
  ]
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
81
82
83
84
85
86
87
88
89
90
91
  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   梁保满   季度时间格式调整
92
          name: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
93
94
95
96
97
98
          component: ExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
99
          name: "examinationPaperAdd",
13b58a42   梁保满   备题组卷部分前端页面基本完成
100
          component: ExaminationPaperAdd,
236b1f0e   梁保满   周末-飞书bug
101
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
102
103
104
105
106
107
108
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: ExaminationPaperEdit,
236b1f0e   梁保满   周末-飞书bug
109
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
110
111
112
113
114
115
116
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperRecycle,
236b1f0e   梁保满   周末-飞书bug
117
          parent: "examinationPaper",
13b58a42   梁保满   备题组卷部分前端页面基本完成
118
119
120
121
122
123
124
125
126
127
128
129
130
131
          children: []
        },
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
e3b0e3e7   梁保满   季度时间格式调整
132
133
          name: "ask",
          name: "随堂问报表",
13b58a42   梁保满   备题组卷部分前端页面基本完成
134
          component: Ask,
236b1f0e   梁保满   周末-飞书bug
135
136
137
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
138
139
140
141
142
143
144
145
          children: []
  
        },
        {
          path: "/askAnalysis",
          iconCls: "", // 图标样式class
          name: "随堂问报表分析",
          component: AskAnalysis,
236b1f0e   梁保满   周末-飞书bug
146
          parent: "ask",
13b58a42   梁保满   备题组卷部分前端页面基本完成
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
          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
163
164
165
          meta: {
            keepAlive: true,
          },
13b58a42   梁保满   备题组卷部分前端页面基本完成
166
167
168
169
170
171
172
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: TestAnalysis,
236b1f0e   梁保满   周末-飞书bug
173
          parent: "test",
13b58a42   梁保满   备题组卷部分前端页面基本完成
174
175
176
177
178
          children: []
        }
  
      ]
    },
255e2506   梁保满   飞书bug及优化
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
    // {
    //   path: "/portrait",
    //   iconCls: "fa fa-users", // 图标样式class
    //   name: "学生画像",
    //   component: Layout,
    //   alone: true,
    //   children: [
    //     {
    //       path: "/portrait",
    //       iconCls: "fa fa-users", // 图标样式class
    //       name: "",
    //       component: Portrait,
    //       children: []
    //     }
    //   ]
    // },
236b1f0e   梁保满   周末-飞书bug
195
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
    {
      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
231
      name: '学校管理',
13b58a42   梁保满   备题组卷部分前端页面基本完成
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
      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   梁保满   备题组卷添加批量设置答案
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
    {
      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   梁保满   备题组卷部分前端页面基本完成
273
274
275
276
277
278
279
280
281
282
283
284
    {
      path: "/device",
      iconCls: "fa fa-dashboard", // 图标样式class
      name: "设备状态",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/device",
          iconCls: "fa fa-dashboard", // 图标样式class
          name: "",
          component: Device,
bbc51d4b   梁保满   组卷添加修改分数,打开新开页面跳转...
285
286
287
          // meta: {
          //   keepAlive: true,
          // },
13b58a42   梁保满   备题组卷部分前端页面基本完成
288
          children: []
db11048f   阿宝   设备状态,学校管理
289
290
291
292
293
294
        },
        {
          path: "/deviceLog",
          iconCls: "fa fa-list-alt", // 图标样式class
          name: "",
          component: DeviceLog,
236b1f0e   梁保满   周末-飞书bug
295
          parent: "device",
db11048f   阿宝   设备状态,学校管理
296
          children: []
13b58a42   梁保满   备题组卷部分前端页面基本完成
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
        }
      ]
    },
    {
      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
335
          parent: "down",
13b58a42   梁保满   备题组卷部分前端页面基本完成
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
          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   梁保满   备题组卷部分前端页面基本完成
356
357
  ]
  
c1b532ad   梁保满   权限配置,路由基础设置
358
359
360
  export default new Router({
    routes: defaultRouter
  })
236b1f0e   梁保满   周末-飞书bug
361
  export { defaultRouter, addrouters }