2023年10月12日 尝试修复cas自动退出后无法退出的问题
This commit is contained in:
parent
7c3d29107a
commit
a3ad006606
|
@ -19,10 +19,13 @@ import { useI18n } from '/@/hooks/web/useI18n';
|
|||
import { joinTimestamp, formatRequestDate } from './helper';
|
||||
import { useUserStoreWithOut } from '/@/store/modules/user';
|
||||
|
||||
import { useSso } from '/@/hooks/web/useSso';
|
||||
//import { useSso } from '/@/hooks/web/useSso';
|
||||
// import { useUserStore } from '/@/store/modules/user';
|
||||
|
||||
const globSetting = useGlobSetting();
|
||||
const urlPrefix = globSetting.urlPrefix;
|
||||
const { createMessage, createErrorModal } = useMessage();
|
||||
// const userStore = useUserStore();
|
||||
|
||||
/**
|
||||
* @description: 数据处理,方便区分多种处理方式
|
||||
|
@ -200,8 +203,12 @@ export const transform: AxiosTransform = {
|
|||
if (!error?.response?.status) {//找不到返回值,也找不到状态码,则认为是重定向后跨域了,
|
||||
//window.location.href = error?.config?.url || window.location.href;//跳转不正常。。。
|
||||
//window.location.href = window.location.href;
|
||||
useSso().ssoLoginOut();
|
||||
}
|
||||
//useSso().ssoLoginOut();
|
||||
//userStore.logout();
|
||||
const userStore = useUserStoreWithOut();
|
||||
userStore.setToken(undefined);
|
||||
userStore.logout(true);
|
||||
}
|
||||
|
||||
const { t } = useI18n();
|
||||
const errorLogStore = useErrorLogStoreWithOut();
|
||||
|
|
Loading…
Reference in New Issue