Files
shgx_tz_mes_backend_sync/ZR.Vue/src/permission.js

89 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-08-23 16:57:25 +08:00
import router from './router'
import store from './store'
2021-12-03 17:42:44 +08:00
import {
Message
} from 'element-ui'
2021-08-23 16:57:25 +08:00
import NProgress from 'nprogress'
import 'nprogress/nprogress.css'
2021-12-03 17:42:44 +08:00
import {
getToken
} from '@/utils/auth'
2021-08-23 16:57:25 +08:00
2021-12-03 17:42:44 +08:00
NProgress.configure({
showSpinner: false
})
2021-08-23 16:57:25 +08:00
const whiteList = ['/login', '/auth-redirect', '/bind', '/register', '/demo']
router.beforeEach((to, from, next) => {
NProgress.start()
2021-12-04 08:24:38 +08:00
console.log('router to ' + to.path);
2021-08-23 16:57:25 +08:00
const hasToken = getToken()
if (hasToken) {
/* has token*/
if (to.path === '/login') {
2021-12-03 17:42:44 +08:00
next({
path: '/'
})
2021-08-23 16:57:25 +08:00
NProgress.done()
} else {
if (store.getters.roles.length === 0) {
// 判断当前用户是否已拉取完user_info信息
store.dispatch('GetInfo').then(res => {
//console.log('拉取userInfo', JSON.stringify(res))
// 拉取user_info
const roles = res.data.roles
2021-12-03 17:42:44 +08:00
store.dispatch('GenerateRoutes', {
roles
}).then(accessRoutes => {
2021-08-23 16:57:25 +08:00
// 测试 默认静态页面
// store.dispatch('permission/generateRoutes', { roles }).then(accessRoutes => {
// 根据roles权限生成可访问的路由表
router.addRoutes(accessRoutes) // 动态添加可访问路由表
2021-12-03 17:42:44 +08:00
next({
...to,
replace: true
}) // hack方法 确保addRoutes已完成
2021-08-23 16:57:25 +08:00
})
next()
}).catch(err => {
console.error(err)
//这部不能少,否则会出现死循环
store.dispatch('FedLogOut').then(() => {
2021-12-03 17:42:44 +08:00
Message.error(err != undefined ? err : '登录失败')
next({
path: '/'
})
2021-08-23 16:57:25 +08:00
})
next(`/login?redirect=${to.path}`)
})
} else {
next()
// 没有动态改变权限的需求可直接next() 删除下方权限判断 ↓
// if (hasPermission(store.getters.roles, to.meta.roles)) {
// next()
// } else {
// next({ path: '/401', replace: true, query: { noGoBack: true }})
// }
// 可删 ↑
}
}
} else {
// 没有token
if (whiteList.indexOf(to.path) !== -1) {
// 在免登录白名单,直接进入
next()
} else {
next(`/login?redirect=${to.fullPath}`) // 否则全部重定向到登录页
NProgress.done()
}
}
})
router.afterEach(() => {
NProgress.done()
})