router.beforeEach(async(to, from, next) => { // start progress bar NProgress.start()
// set page title document.title = getPageTitle(to.meta.title)
// determine whether the user has logged in const hasToken = getToken() if (hasToken) { if (to.path === '/login') { // if is logged in, redirect to the home page next({ path: '/' }) NProgress.done() } else { const hasGetUserInfo = store.getters.phone if (hasGetUserInfo) { next() } else { try { // get user info await store.dispatch('user/getInfo') let routes=await getAsyncRoutes() // 获取动态路由 await store.dispatch('permission/generateRoutes', routes) router.addRoutes([{ path: '*', redirect: '/404', hidden: true }]) next({ ...to, replace: true }) // next() } catch (error) { // remove token and go to login page to re-login await store.dispatch('user/resetToken') Message.error(error || 'Has Error') next(`/login?redirect=${to.path}`) NProgress.done() } } } } else { /* has no token*/
if (whiteList.indexOf(to.path) !== -1) { // in the free login whitelist, go directly next() } else { // other pages that do not have permission to access are redirected to the login page. next(`/login?redirect=${to.path}`) NProgress.done() } } })