This commit is contained in:
lcw
2025-09-17 18:28:55 +08:00
parent 2d40736a96
commit 946549f94e
406 changed files with 125301 additions and 12 deletions

View File

@ -11,14 +11,13 @@ const loginDialog = ref(false);
const deptList = ref([]);
const store = useStore();
function redirectAuth() {
let token = location.hash.slice(20) || null;
if (token != null) {
token = token.replace(/\ +/g, "");
setItem("SSOTOKEN", token)
handleLogin({ token: token});
} else {
window.location.href = `http://155.240.22.188:9020`;
window.location.href = `http://155.240.22.102:40992`;
}
}