From 9925006c56b682ba5ad4e5d074be637ae47e7679 Mon Sep 17 00:00:00 2001 From: wxy <14293288+zysysys@user.noreply.gitee.com> Date: Fri, 11 Oct 2024 21:57:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E8=BD=A6=E8=BE=86=E8=BD=A8=E8=BF=B9?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=B8=AD=E6=B7=BB=E5=8A=A0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在尝试获取车辆轨迹数据后,现在会显示一个提示,展示获取到的车辆经度信息。 --- src/views/car/trajectory/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/car/trajectory/index.vue b/src/views/car/trajectory/index.vue index 6112aa3..3ac045b 100644 --- a/src/views/car/trajectory/index.vue +++ b/src/views/car/trajectory/index.vue @@ -83,6 +83,7 @@ export default { try { const res = await getDataByRedis(this.carVin); this.data = res.data; + alert(res.data.longitude); // 更新车辆位置 this.updateCarMarker();