From 1ac524e1f1bfab19a5091400e2f53d30c45b11c4 Mon Sep 17 00:00:00 2001 From: xiebing Date: Fri, 19 Dec 2025 14:47:08 +0800 Subject: [PATCH] fix --- App.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/App.vue b/App.vue index 4054bd3..1cd0f97 100644 --- a/App.vue +++ b/App.vue @@ -39,7 +39,9 @@ onLaunch((options) => { }) .catch(err=>{ console.log('❌一体机获取定位失败,30s后尝试重新获取') - useLocationStore().getLocation() + setTimeout(() => { + useLocationStore().getLocation() + }, 3000); }) uQRListen = new IncreaseRevie(); inactivityManager = new GlobalInactivityManager(handleInactivity, 60 * 1000);