permission.js 2.07 KB
Newer Older
纪泽龙's avatar
纪泽龙 committed
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";
耿迪迪's avatar
耿迪迪 committed
7

纪泽龙's avatar
纪泽龙 committed
8
NProgress.configure({ showSpinner: false });
耿迪迪's avatar
耿迪迪 committed
9

纪泽龙's avatar
纪泽龙 committed
10
const whiteList = ["/login", "/auth-redirect", "/bind", "/register"];
耿迪迪's avatar
耿迪迪 committed
11 12

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

router.afterEach(() => {
纪泽龙's avatar
纪泽龙 committed
66 67
  NProgress.done();
});