Browse Source

用户权限存local storage

gr 2 năm trước cách đây
mục cha
commit
9029248323
3 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 2 2
      src/router/index.js
  2. 3 3
      src/utils/createRoutes.js
  3. 1 1
      src/views/home/AppIndex.vue

+ 2 - 2
src/router/index.js

@@ -153,7 +153,7 @@ router.beforeEach((to, from, next) => {
     }else {
       deleteCookie('m_token')
       deleteCookie('userInfo')
-      deleteCookie('authority')
+      localStorage.removeItem('authority')
       window.open(
         `https://geodatasvr.cn.smism.com/platform-entrance-s/#/login?url=https://geodatasvr.cn.smism.com/user_authentication/#/home`,
         "_self",
@@ -165,7 +165,7 @@ router.beforeEach((to, from, next) => {
   },error=>{
     deleteCookie('m_token')
     deleteCookie('userInfo')
-    deleteCookie('authority')
+    localStorage.removeItem('authority')
      window.open(
       `https://geodatasvr.cn.smism.com/platform-entrance-s/#/login?url=https://geodatasvr.cn.smism.com/user_authentication/#/home`,
       "_self",

+ 3 - 3
src/utils/createRoutes.js

@@ -35,7 +35,7 @@ function selectRoutes(routes, names) {
 
 const initDynamicRoutesFunc = () => {
   let [...defRoutes] = defaultRoutes
-  let authorityNameArr = initauthorityNameArr(JSON.parse(getCookie('authority'))[0].children,[])
+  let authorityNameArr = initauthorityNameArr(JSON.parse(localStorage.getItem('authority'))[0].children,[])
   let selectedRoutes = selectRoutes(defRoutes[0].children, authorityNameArr.length>0? authorityNameArr: ["Home"]) // 权限为空时默认加入首页
   defRoutes[0].children = selectedRoutes
   resetRouter()
@@ -45,13 +45,13 @@ const initDynamicRoutesFunc = () => {
 }
 
 export const initDynamicRoutes = () => {
-  if(getCookie('authority')==='') {
+  if(!localStorage.getItem('authority') || localStorage.getItem('authority')==='') {
     GetUserAuthority().then(res => {
       if(res.code == 200) {
         let auth = res.data.authority.filter(i => {
           return i.authorityName === '用户认证管理'
         })
-        setCookie('authority',JSON.stringify(auth), 1)
+        localStorage.setItem('authority',JSON.stringify(auth))
         initDynamicRoutesFunc()
         router.push({path: '/'})
       }

+ 1 - 1
src/views/home/AppIndex.vue

@@ -97,7 +97,7 @@
             if(res.code == 200) {
               deleteCookie('m_token')
               deleteCookie('userInfo')
-              deleteCookie('authority')
+              localStorage.removeItem('authority')
               window.location.reload()
             }
           })