permission.js 1.94 KB
Newer Older
1 2 3 4 5 6
import router from "./router";
import store from "./store";
import { Message } from "element-ui";
import NProgress from "nprogress";
import "nprogress/nprogress.css";
import { getToken } from "@/utils/auth";
7

8
NProgress.configure({ showSpinner: false });
9

10
const whiteList = ["/login", "/auth-redirect", "/bind", "/register"];
11 12

router.beforeEach((to, from, next) => {
13
  NProgress.start();
14 15
  if (getToken()) {
    /* has token*/
16 17 18
    if (to.path === "/login") {
      next({ path: "/" });
      NProgress.done();
19 20 21
    } else {
      if (store.getters.roles.length === 0) {
        // 判断当前用户是否已拉取完user_info信息
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
        store
          .dispatch("GetInfo")
          .then(() => {
            store.dispatch("GenerateRoutes").then((accessRoutes) => {
              // 根据roles权限生成可访问的路由表
              router.addRoutes(accessRoutes); // 动态添加可访问路由表
              // next({ ...to, replace: true }) // hack方法 确保addRoutes已完成
              const origin = router.options.routes.find((item) => {
                return item.redirect === "index";
              });
              // 隐藏
              origin.children[0].hidden = true;
              // 挑战
              if (accessRoutes[0].children) {
                next({ ...accessRoutes[0].children[0] });
              }
              // console.log('accessRoutes[0].children',accessRoutes)
            });
40
          })
41 42 43 44 45 46
          .catch((err) => {
            store.dispatch("LogOut").then(() => {
              Message.error(err);
              next({ path: "/" });
            });
          });
47
      } else {
48
        next();
49 50 51 52 53 54
      }
    }
  } else {
    // 没有token
    if (whiteList.indexOf(to.path) !== -1) {
      // 在免登录白名单,直接进入
55
      next();
56
    } else {
57 58
      next(`/login?redirect=${to.fullPath}`); // 否则全部重定向到登录页
      NProgress.done();
59 60
    }
  }
61
});
62 63

router.afterEach(() => {
64 65
  NProgress.done();
});