Blame view

src/store/index.js 9.91 KB
c1b532ad   梁保满   权限配置,路由基础设置
1
2
3
  import Vue from "vue"
  import Vuex from "vuex"
  import Cookies from "js-cookie"
4c4f7640   梁保满   路由表,路由前端文件
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  import layoutStore from "./modules/layout/index"
  import { defaultRouter } from "@/router/index"
  
  import request from "@/api/index"
  import router from "@/router/index"
  
  import Layout from "@/views/layout/layout"
  import CommerViews from "@/views/commerViews"
  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")
d4283687   梁保满   首页布局完成,页面顶部返回组件
23
  const Analysis = () => import("@/views/analysis/index")
4c4f7640   梁保满   路由表,路由前端文件
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  const Device = () => import("@/views/device/index")
  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")
  let addrouters = [  //测试用,后续后端获取
    {
      path: "/examinationPaper",
      iconCls: "fa fa-file-text", // 图标样式class
      name: "备题组卷",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/examinationPaper",
          iconCls: "fa fa-file-text", // 图标样式class
          name: "",
          component: ExaminationPaper,
          children: []
        },
        {
          path: "/examinationPaperAdd",
          iconCls: "", // 图标样式class
          name: "添加答题卡",
          component: ExaminationPaperAdd,
          children: []
        },
        {
          path: "/examinationPaperEdit",
          iconCls: "", // 图标样式class
          name: "修改答题卡",
          component: ExaminationPaperEdit,
          children: []
        },
        {
          path: "/examinationPaperRecycle",
          iconCls: "", // 图标样式class
          name: "已归档答题卡",
          component: ExaminationPaperRecycle,
          children: []
        },
      ]
    },
    {
      path: "/ask",
      iconCls: "fa fa-bar-chart", // 图标样式class
      name: "随堂问报表",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/ask",
          iconCls: "fa fa-bar-chart", // 图标样式class
          name: "",
          component: Ask,
          children: []
  
        },
        {
          path: "/askAnalysis",
          iconCls: "", // 图标样式class
          name: "随堂问报表分析",
          component: AskAnalysis,
          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,
          children: []
        },
        {
          path: "/testAnalysis",
          iconCls: "", // 图标样式class
          name: "即时测报表分析",
          component: TestAnalysis,
          children: []
        }
  
      ]
    },
    {
      path: "/portrait",
      iconCls: "fa fa-users", // 图标样式class
      name: "学生画像",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/portrait",
          iconCls: "fa fa-users", // 图标样式class
          name: "",
          component: Portrait,
          children: []
        }
      ]
    },
d4283687   梁保满   首页布局完成,页面顶部返回组件
134
    
4c4f7640   梁保满   路由表,路由前端文件
135
    {
d4283687   梁保满   首页布局完成,页面顶部返回组件
136
137
138
      path: "/setUpConglomerate",
      iconCls: "fa fa-building", // 图标样式class
      name: "学校管理",
4c4f7640   梁保满   路由表,路由前端文件
139
140
141
142
      component: Layout,
      alone: true,
      children: [
        {
d4283687   梁保满   首页布局完成,页面顶部返回组件
143
144
145
146
          path: "/setUpConglomerate",
          iconCls: "fa fa-building",
          name: '集团管理',
          component: SetUpConglomerate,
4c4f7640   梁保满   路由表,路由前端文件
147
          children: []
d4283687   梁保满   首页布局完成,页面顶部返回组件
148
        },
4c4f7640   梁保满   路由表,路由前端文件
149
150
151
      ]
    },
    {
d4283687   梁保满   首页布局完成,页面顶部返回组件
152
153
154
      path: "/setUpAccount",
      iconCls: "fa fa-id-card-o", // 图标样式class
      name: "账号管理",
4c4f7640   梁保满   路由表,路由前端文件
155
      component: Layout,
d4283687   梁保满   首页布局完成,页面顶部返回组件
156
      alone: true,
4c4f7640   梁保满   路由表,路由前端文件
157
158
159
160
      children: [
        {
          path: "/setUpAccount",
          iconCls: "fa fa-id-card-o",
d4283687   梁保满   首页布局完成,页面顶部返回组件
161
          name: '',
4c4f7640   梁保满   路由表,路由前端文件
162
163
164
          component: SetUpAccount,
          children: []
        },
d4283687   梁保满   首页布局完成,页面顶部返回组件
165
166
167
168
169
      ]
    },
    {
      path: "/",
      iconCls: "fa fa-cog",
65f592b6   梁保满   答题卡列表页
170
      name: '学校设置',
d4283687   梁保满   首页布局完成,页面顶部返回组件
171
172
      component: Layout,
      children: [
4c4f7640   梁保满   路由表,路由前端文件
173
174
175
        {
          path: "/setUpSchool",
          iconCls: "fa fa-calculator",
65f592b6   梁保满   答题卡列表页
176
          name: '学校设置',
4c4f7640   梁保满   路由表,路由前端文件
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
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
          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,
          children: []
        }
      ]
    },
    {
d4283687   梁保满   首页布局完成,页面顶部返回组件
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
      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: []
        }
      ]
    },
    {
4c4f7640   梁保满   路由表,路由前端文件
245
246
247
248
249
250
251
252
253
      path: "/down",
      iconCls: "fa fa-download", // 图标样式class
      name: "软件下载",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/down",
          iconCls: "fa fa-download", // 图标样式class
65f592b6   梁保满   答题卡列表页
254
          name: "发卡软件",
4c4f7640   梁保满   路由表,路由前端文件
255
256
257
258
259
260
          component: Down,
          children: []
        },
        {
          path: "/downClient",
          iconCls: "", // 图标样式class
65f592b6   梁保满   答题卡列表页
261
          name: "授课端软件",
4c4f7640   梁保满   路由表,路由前端文件
262
263
264
265
266
          component: DownClient,
          children: []
        }
      ]
    },
d4283687   梁保满   首页布局完成,页面顶部返回组件
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
    {
      path: "/dataSync",
      iconCls: "fa fa-random", // 图标样式class
      name: "数据同步",
      component: Layout,
      alone: true,
      children: [
        {
          path: "/dataSync",
          iconCls: "fa fa-random", // 图标样式class
          name: "",
          component: DataSync,
          children: []
        }
      ]
    },
4c4f7640   梁保满   路由表,路由前端文件
283
284
285
286
287
288
289
    {
      path: "*",
      redirect: "/404",
      hidden: true,
      children: []
    }
  ]
c1b532ad   梁保满   权限配置,路由基础设置
290
291
292
293
294
  
  Vue.use(Vuex)
  
  const store = new Vuex.Store({
    state: {
4c4f7640   梁保满   路由表,路由前端文件
295
296
297
298
      token: Cookies.get("token"),
      info: "", // 每次刷新都要通过token请求个人信息来筛选动态路由
      routers: [],
      addRouters: [],
65f592b6   梁保满   答题卡列表页
299
      tokenSources:new Map(),
c1b532ad   梁保满   权限配置,路由基础设置
300
301
    },
    mutations: {
4c4f7640   梁保满   路由表,路由前端文件
302
      setToken(state, token) {
c1b532ad   梁保满   权限配置,路由基础设置
303
304
        state.token = token
        Cookies.set("token", token, { expires: 1 / 24 })
4c4f7640   梁保满   路由表,路由前端文件
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
      },
      setInfo(state, data) {
        state.info = {
          role: data.role,
          permissions: data.permissions,
          name: data.name,
          authorityRouter: data.authorityRouter,
          avatar: data.avatar ? data.avatar : "",
          uid: data.id
        }
        localStorage.setItem("info", JSON.stringify(store.getters.info))
      },
      setRouters: (state, routers) => {
        state.addRouters = routers // 保存动态路由用来addRouter
        state.routers = defaultRouter.concat(routers) // 所有有权限的路由表,用来生成菜单列表
      },
65f592b6   梁保满   答题卡列表页
321
322
323
324
325
326
327
328
329
330
      setTokenSources(state,data){
        if(data instanceof Array){
          state.tokenSources.set(data[0], data[1])
        }else{
          state.tokenSources = new Map()
        }
      },
      delTokenSources(state,data){
        state.tokenSources.delete(data)
      },
c1b532ad   梁保满   权限配置,路由基础设置
331
332
    },
    actions: {
4c4f7640   梁保满   路由表,路由前端文件
333
      Login({ commit }, that) {
4c4f7640   梁保满   路由表,路由前端文件
334
        // request.fetchLogin(that.loginForm).then(res => {
29f8fb90   梁保满   刷新浏览器重新动态添加路由
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
        // if (res.status == 200) {
        commit("setToken", "xxxx")
        commit("setInfo", {
          permissions: [
            {
              role: "superAdmin",
              roleName: "超级管理员",
            },
          ],
          name: "张老师",
          // avatar: data.avatar ? data.avatar : "",
          // uid: data.id,
          // authorityRouter:[],
        });
        commit("setRouters", addrouters)
29f8fb90   梁保满   刷新浏览器重新动态添加路由
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
        addrouters.forEach((res) => {
          that.$router.addRoute(res);
        });
        that.$router.push({ path: "/" })
        // }
        // })
      },
      permissions({ commit }, that) {
        // request.fetchLogin(that.loginForm).then(res => {
        // if (res.status == 200) {
        commit("setToken", "xxxx")
        commit("setInfo", {
          permissions: [
            {
              role: "superAdmin",
              roleName: "超级管理员",
            },
          ],
          name: "李老师",
          // avatar: data.avatar ? data.avatar : "",
          // uid: data.id,
          // authorityRouter:[],
        });
        commit("setRouters", addrouters)
29f8fb90   梁保满   刷新浏览器重新动态添加路由
374
375
376
377
378
        addrouters.forEach((res) => {
          that.$router.addRoute(res);
        });
        that.$router.push({ path: "/" })
        // }
4c4f7640   梁保满   路由表,路由前端文件
379
        // })
c1b532ad   梁保满   权限配置,路由基础设置
380
381
382
      }
    },
    getters: {
4c4f7640   梁保满   路由表,路由前端文件
383
      addRouters: state => state.addRouters,
c1b532ad   梁保满   权限配置,路由基础设置
384
      token: state => state.token,
4c4f7640   梁保满   路由表,路由前端文件
385
386
387
388
389
390
391
      info: state => state.info,
      routers: state => state.routers,
      logoShow: state => state.layoutStore.logoShow,
      isCollapse: state => state.layoutStore.isCollapse,
      uniquerouter: state => state.layoutStore.uniquerouter,
      tabnavBox: state => state.layoutStore.tabnavBox,
      rightNav: state => state.layoutStore.rightNav
c1b532ad   梁保满   权限配置,路由基础设置
392
393
    },
    modules: {
4c4f7640   梁保满   路由表,路由前端文件
394
      layoutStore
c1b532ad   梁保满   权限配置,路由基础设置
395
396
397
398
    }
  })
  
  export default store