改进 登录

This commit is contained in:
ivamp 2024-05-25 23:57:44 +08:00
parent e9e1e3e0ca
commit c550a5370e

View File

@ -38,9 +38,15 @@ function back() {
});
} else {
console.log("跳转:" + last_url);
setTimeout(() => {
router.push({
path: last_url,
path: last_url ? last_url : "/",
});
}, 100)
//
// window.location.href = window.location.origin + last_url
}
}
</script>