You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suzhouyingjiPC/src/permission.js

104 lines
3.2 KiB

1 year ago
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";
import { isRelogin } from "@/utils/request";
import { getUseInfo } from "@/api/login.js";
1 year ago
1 year ago
NProgress.configure({ showSpinner: false });
1 year ago
const whiteList = ["/login"];
1 year ago
router.beforeEach((to, from, next) => {
1 year ago
NProgress.start();
1 year ago
if (getToken()) {
1 year ago
to.meta.title && store.dispatch("settings/setTitle", to.meta.title);
1 year ago
/* has token*/
1 year ago
if (to.path === "/login") {
next({ path: "/" });
NProgress.done();
1 year ago
} else {
1 year ago
// store.dispatch("Getdistrict");
1 year ago
if (store.getters.roles.length === 0) {
1 year ago
isRelogin.show = true;
1 year ago
// 判断当前用户是否已拉取完user_info信息
1 year ago
store.dispatch("GetInfo").then((res) => {
isRelogin.show = false;
store.dispatch("GenerateRoutes").then((accessRoutes) => {
// 根据roles权限生成可访问的路由表
// console.log(res);
router.addRoutes(accessRoutes); // 动态添加可访问路由表
//刷新之后,要去的路由肯定是自己已经保存过的新路由
let refresh = "";
if (store.state.user.new1.indexOf(to.path) != -1) {
refresh = to.path;
}
// console.log(to.path);
//进入添加的第一个路由
next({ path: refresh || res[0].path });
1 year ago
});
1 year ago
});
// .catch((err) => {
// store.dispatch("LogOut").then(() => {
// Message.error(err);
// next({ path: "/" });
// });
// });
1 year ago
} else {
1 year ago
if (
store.state.user.old1.indexOf(to.path) != -1 &&
store.state.user.new1.indexOf(to.path) == -1
) {
next({ path: "/404" });
} else {
1 year ago
next();
}
1 year ago
}
}
} else {
// 没有token
1 year ago
if (window.location.href.includes("?code")) {
1 year ago
// console.log(window.location.href)
1 year ago
var reg = new RegExp(/[?&]code=([^&#]+)/);
var r = window.location.href.match(reg);
1 year ago
// console.log('有code')
1 year ago
// const code = window.location.href.split("?")[1].split('=')[1];
1 year ago
const code = r && r[1];
1 year ago
// console.log(code)
1 year ago
getUseInfo({ code: code })
.then((user) => {
1 year ago
// console.log(user, "用户信息");
1 year ago
localStorage.setItem("isGovernmentAffairsNetwork", "1");
localStorage.setItem("G_USER_INFO", JSON.stringify(user));
1 year ago
store
.dispatch("LoginNoCaptcha", {
username: "admin",
password: "admin@123Jichuang",
})
.then((res) => {
next("/home");
});
1 year ago
})
1 year ago
.catch((err) => {
1 year ago
location.href = process.env.VUE_APP_SSO_LOGIN;
1 year ago
});
1 year ago
} else {
1 year ago
// console.log('没code')
if (whiteList.indexOf(to.path) !== -1) {
// 在免登录白名单,直接进入
1 year ago
next();
NProgress.done();
1 year ago
} else {
1 year ago
location.href = process.env.VUE_APP_SSO_LOGIN;
1 year ago
NProgress.done();
1 year ago
}
1 year ago
}
}
1 year ago
});
1 year ago
router.afterEach(() => {
1 year ago
NProgress.done();
});