使用vue-element-admin快速搭建后台管理系统

 

https://www.bilibili.com/video/BV1cR4y1v7Eu/?spm_id_from=333.337.search-card.all.click&vd_source=db8a6124a433b882b2447b08d65c73a8

import router from './router'
import store from './store'
import { Message } from 'element-ui'
import NProgress from 'nprogress' // progress bar
import 'nprogress/nprogress.css' // progress bar style
import { getToken } from '@/utils/auth' // get token from cookie
import getPageTitle from '@/utils/get-page-title'

NProgress.configure({ showSpinner: false }) // NProgress Configuration

const whiteList = ['/login', '/auth-redirect'] // no redirect whitelist

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() // hack: https://github.com/PanJiaChen/vue-element-admin/pull/2939
    } else {
      // determine whether the user has obtained his permission roles through getInfo
      const hasRoles = store.getters.roles && store.getters.roles.length > 0
      if (hasRoles) {
        next()
      } else {
        try {
          // get user info
          // note: roles must be a object array! such as: ['admin'] or ,['developer','editor']
          const { roles } = await store.dispatch('user/getInfo')

          // generate accessible routes map based on roles
          const accessRoutes = await store.dispatch('permission/generateRoutes', roles)

          // dynamically add accessible routes
          router.addRoutes(accessRoutes)

          // hack method to ensure that addRoutes is complete
          // set the replace: true, so the navigation will not leave a history record
          next({ ...to, replace: true })
        } 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()
    }
  }
})

router.afterEach(() => {
  // finish progress bar
  NProgress.done()
})

相关视频: https://www.bilibili.com/video/BV1cR4y1v7Eu/?p=5&spm_id_from=333.1007.top_right_bar_window_history.content.click&vd_source=db8a6124a433b882b2447b08d65c73a8

 

尚硅谷VUE项目实战,前端项目-尚品汇(大型\重磅):

最新接口地址: http://gmall-h5-api.atguigu.cn

前台+后台,双项目实战!

前台项目:p1 - p112 , 后台管理系统:p113 - p200

前后端项目二者相互独立,又可以结合在一起,满足你对大型Vue项目实战的需求,一套教程覆盖Vue框架方方面面的知识点,全面、详细!

https://www.bilibili.com/video/BV1Vf4y1T7bw?p=113&vd_source=db8a6124a433b882b2447b08d65c73a8

posted @ 2024-07-12 16:59  鼓舞飞扬  阅读(75)  评论(0编辑  收藏  举报