permission.js 2.56 KB
Newer Older
1
import router, { route } from "./router";
纪泽龙's avatar
纪泽龙 committed
2 3 4 5 6
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
        store
          .dispatch("GetInfo")
          .then(() => {
            store.dispatch("GenerateRoutes").then(accessRoutes => {
              // 根据roles权限生成可访问的路由表
              router.addRoutes(accessRoutes); // 动态添加可访问路由表
28 29 30 31 32 33 34 35 36 37 38
              // next({ ...to, replace: true }); // hack方法 确保addRoutes已完成
              // 跳转去第一个路由
              const myHome = accessRoutes[0]?.children.filter(
                item => !item.hidden
              )[0];
              // 跳转去第一个子元素当主页
              if (to.path == "/enterprise/mapView") {
                next({ ...myHome, replace: true });
              } else {
                next({ ...to, replace: true });
              }
纪泽龙's avatar
纪泽龙 committed
39
            });
耿迪迪's avatar
耿迪迪 committed
40
          })
纪泽龙's avatar
纪泽龙 committed
41 42 43 44 45 46
          .catch(err => {
            store.dispatch("LogOut").then(() => {
              Message.error(err);
              next({ path: "/" });
            });
          });
耿迪迪's avatar
耿迪迪 committed
47
      } else {
纪泽龙's avatar
纪泽龙 committed
48
        next();
耿迪迪's avatar
耿迪迪 committed
49 50 51 52 53 54
      }
    }
  } else {
    // 没有token
    if (whiteList.indexOf(to.path) !== -1) {
      // 在免登录白名单,直接进入
纪泽龙's avatar
纪泽龙 committed
55
      next();
耿迪迪's avatar
耿迪迪 committed
56
    } else {
纪泽龙's avatar
纪泽龙 committed
57 58
      next(`/login?redirect=${to.fullPath}`); // 否则全部重定向到登录页
      NProgress.done();
耿迪迪's avatar
耿迪迪 committed
59 60
    }
  }
纪泽龙's avatar
纪泽龙 committed
61
});
耿迪迪's avatar
耿迪迪 committed
62

63
export const getRouter = () => {};
纪泽龙's avatar
纪泽龙 committed
64
router.afterEach((to, from) => {
纪泽龙's avatar
纪泽龙 committed
65 66
  // 查找只有一个菜单的目录
  const parentPath = to.matched[0].path;
67 68 69 70 71 72 73
  let arr = store.state.permission.topbarRouters
    .filter(item => {
      return item.path == parentPath;
    })[0]?.children.filter(item => {
      return item.hidden == false;
    });
  if (arr&&arr.length == 1 || to.path == "/enterprise/mapView") {
纪泽龙's avatar
纪泽龙 committed
74
    store.dispatch("app/toggleDevice", "mobile");
75
    store.dispatch("app/closeSideBar", { withoutAnimation: true });
纪泽龙's avatar
纪泽龙 committed
76 77
  } else {
    store.dispatch("app/toggleDevice", "desktop");
78
    store.dispatch("app/closeSideBar", { withoutAnimation: false });
纪泽龙's avatar
纪泽龙 committed
79 80 81
  }
  NProgress.done();
});