This commit is contained in:
telangpu
2026-05-07 13:03:47 +08:00
parent edec02e4ef
commit 40067a1ea1
4 changed files with 4 additions and 10 deletions

View File

@@ -30,12 +30,7 @@ const next = () => {
// 2. 模擬查詢延遲,隨後執行原本的跳轉邏輯
setTimeout(() => {
localStorage.setItem("plateNumber", formData.value.phoneData.plateNumber);
loadingStore.setLoading(true);
setTimeout(() => {
loadingStore.setLoading(false);
router.push("/pay");
}, 200);
router.push("/pay");
}, 2500); // 模擬 2.5 秒的查詢時間
};