From 73a66929982b525476db768a1d807461b118053b Mon Sep 17 00:00:00 2001 From: xiebing Date: Mon, 22 Dec 2025 14:40:59 +0800 Subject: [PATCH] =?UTF-8?q?feat=20:=20useLocationStore=20=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E7=BB=8F=E7=BA=AC=E5=BA=A6=E6=97=B6=E5=B0=B1=E7=BB=99?= =?UTF-8?q?=E9=BB=98=E8=AE=A4,=E6=9C=89=E6=97=B6=E8=BF=98=E5=9C=A8?= =?UTF-8?q?=E5=AE=9A=E4=BD=8D=E4=B8=AD,=E5=9C=B0=E5=9B=BE=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E6=97=A0=E6=B3=95=E4=BD=BF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stores/useLocationStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stores/useLocationStore.js b/stores/useLocationStore.js index fb6be6d..f6e035f 100644 --- a/stores/useLocationStore.js +++ b/stores/useLocationStore.js @@ -16,8 +16,8 @@ const defalutLongLat = { const useLocationStore = defineStore("location", () => { // 定义状态 - const longitudeVal = ref(null) // 经度 - const latitudeVal = ref(null) //纬度 + const longitudeVal = ref(120.366085) // 经度 + const latitudeVal = ref(36.086656) //纬度 const timer = ref(null) const count = ref(0)