feat: 增加自定义登出路径

This commit is contained in:
fit2cloud-chenyw 2024-03-15 09:43:44 +08:00
parent b835d953a0
commit 185c6c7576

View File

@ -30,6 +30,9 @@ export const logoutHandler = (justClean?: boolean) => {
window.location.href = '/oidcbi/oidc/logout'
return
}
if (wsCache.get('custom_auth_logout_url')) {
window.location.href = wsCache.get('custom_auth_logout_url')
}
router.push(justClean ? queryRedirectPath : `/login?redirect=${queryRedirectPath}`)
}