|
@@ -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: '/'})
|
|
|
}
|