登录后页面跳转路由修改

This commit is contained in:
bestlee 2026-06-30 11:59:23 +08:00
parent 55d4b504b6
commit de20585560
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ const onSubmit = async (values) => {
try {
const res = await loginApi(values);
localStorage.setItem('token', res.data.access_token);
router.push({ path: '/applyList' });
router.push({ path: '/waitList' });
} finally {
btnLoading.value = false;
}