mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 05:50:18 +08:00
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
/** 获取登录重定向的地址 */
|
|
export function getLoginRedirectUrl() {
|
|
return window.location.href;
|
|
}
|
|
|
|
/** 登录后跳转重定向的地址 */
|
|
export function toLoginRedirectUrl(redirectUrl: string) {
|
|
window.location.href = redirectUrl;
|
|
}
|
|
|
|
/** 回到首页 */
|
|
export function toHomeByLocation() {
|
|
window.location.href = '/';
|
|
}
|