Merge branch 'main' of https://git.cityme.com.cn/xiangshan/ggfwjsc
This commit is contained in:
commit
c923174d85
|
@ -1,3 +1,3 @@
|
||||||
<template>
|
<template>
|
||||||
<router-view />
|
<router-view />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -37,6 +37,7 @@ axios.interceptors.response.use(
|
||||||
const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
|
const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
|
||||||
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
|
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
|
||||||
}
|
}
|
||||||
|
|
||||||
let backurl=window.location.href;
|
let backurl=window.location.href;
|
||||||
tools.data.set("backUrl",backurl);
|
tools.data.set("backUrl",backurl);
|
||||||
router.replace({
|
router.replace({
|
||||||
|
|
|
@ -137,6 +137,8 @@ const getCookie = (cname) => {
|
||||||
};
|
};
|
||||||
// 登录
|
// 登录
|
||||||
const login = () => {
|
const login = () => {
|
||||||
|
console.log(111111111);
|
||||||
|
|
||||||
let backurl = tools.data.get("backUrl");
|
let backurl = tools.data.get("backUrl");
|
||||||
dd.getAuthCode()
|
dd.getAuthCode()
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
@ -153,6 +155,8 @@ const login = () => {
|
||||||
tools.data.set("type", 1);
|
tools.data.set("type", 1);
|
||||||
getMenu();
|
getMenu();
|
||||||
if (backurl) {
|
if (backurl) {
|
||||||
|
console.log(222222);
|
||||||
|
|
||||||
window.location.href = backurl;
|
window.location.href = backurl;
|
||||||
tools.data.remove("backUrl");
|
tools.data.remove("backUrl");
|
||||||
}
|
}
|
||||||
|
@ -210,7 +214,10 @@ const login = () => {
|
||||||
tools.data.set("token", token);
|
tools.data.set("token", token);
|
||||||
tools.data.set("type", 2);
|
tools.data.set("type", 2);
|
||||||
getMenu();
|
getMenu();
|
||||||
|
window.addEventListener("mousemove", resetTimer);
|
||||||
|
window.addEventListener("keydown", resetTimer);
|
||||||
if (backurl) {
|
if (backurl) {
|
||||||
|
console.log(33333333333);
|
||||||
window.location.href = backurl;
|
window.location.href = backurl;
|
||||||
tools.data.remove("backUrl");
|
tools.data.remove("backUrl");
|
||||||
}
|
}
|
||||||
|
@ -226,6 +233,7 @@ const login = () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
//头部菜单
|
//头部菜单
|
||||||
const getMenu = () => {
|
const getMenu = () => {
|
||||||
http.get(`/api/ggfwyth/account/roleMenu`).then((res) => {
|
http.get(`/api/ggfwyth/account/roleMenu`).then((res) => {
|
||||||
|
@ -244,6 +252,34 @@ const reset_font = () => {
|
||||||
document.querySelector("#m").style.transform =
|
document.querySelector("#m").style.transform =
|
||||||
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
||||||
};
|
};
|
||||||
|
//未操作,退出登录
|
||||||
|
const inactivityTimer = ref(null);
|
||||||
|
const resetTimer = () => {
|
||||||
|
clearTimeout(inactivityTimer.value);
|
||||||
|
inactivityTimer.value = setTimeout(() => {
|
||||||
|
// 执行注销操作或者跳转到登录页面的代码
|
||||||
|
// ElMessage.error("请重新登录!");
|
||||||
|
// 清空cook
|
||||||
|
ElMessage.error("长时间未操作,请重新登录");
|
||||||
|
window.removeEventListener("mousemove", resetTimer);
|
||||||
|
window.removeEventListener("keydown", resetTimer);
|
||||||
|
const cookies = document.cookie.split(";");
|
||||||
|
for (let i = 0; i < cookies.length; i++) {
|
||||||
|
const cookie = cookies[i];
|
||||||
|
const eqPos = cookie.indexOf("=");
|
||||||
|
const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
|
||||||
|
document.cookie =
|
||||||
|
name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
|
||||||
|
}
|
||||||
|
let backurl = window.location.href;
|
||||||
|
tools.data.set("backUrl", backurl);
|
||||||
|
router.replace({
|
||||||
|
path: "/guide",
|
||||||
|
});
|
||||||
|
window.location.href =
|
||||||
|
"http://220.191.238.50:996/api/login?returnURL=" + window.location.href;
|
||||||
|
}, 30 * 60 * 1000); // 30分钟
|
||||||
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
login();
|
login();
|
||||||
|
|
Loading…
Reference in New Issue