优化跳转方式

pull/82/head^2
awenes 2024-04-04 20:28:55 +08:00
parent 84c542807c
commit 6264e0099b
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ export const requestConfig: RequestConfig = {
}; };
} }
const href = history.createHref(settings); const href = history.createHref(settings);
window.location.replace(href); history.push(href);
} }
return; return;
} }

View File

@ -59,7 +59,7 @@ export const requestConfig: RequestConfig = {
}; };
} }
const href = history.createHref(settings); const href = history.createHref(settings);
window.location.replace(href); history.push(href);
} }
return; return;
} }