From 5dd05ae5b546d0e8147b56a8092afc0ee7532925 Mon Sep 17 00:00:00 2001 From: suixy <2277317060@qq.com> Date: Sat, 11 Oct 2025 15:54:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/index.vue b/src/views/index.vue index 96fbc94..17e0e4e 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -762,7 +762,7 @@ const setItemsId = (e) => { const locationData = ref({}) const currentPosition = ref({}) -function calcRectangleFromPoints(points) { +function calcRectangleFromPoints1(points) { if (!points || points.length !== 4) throw new Error("必须传入四个点"); const R = 111320; @@ -1109,7 +1109,7 @@ const ad = () => { // 3. 接收消息 socket.addEventListener("message", (event) => { - console.log(JSON.parse(event.data)) + // console.log(JSON.parse(event.data)) processData(JSON.parse(event.data)) });