From 613abca07974b9832df0f34d9fab2df544882629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9C=E7=AC=99=E6=AD=8C?= <2277317060@qq.com> Date: Thu, 11 Sep 2025 16:40:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=9A=9C=E7=A2=8D=E7=89=A9?= 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 519f2d0..4445364 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -843,9 +843,9 @@ const setDot = (e) => { index: k } }).filter(v => v) - tableData1.value = e.DarDatas.filter(v => v.Lon !== 0 && v.Lat !== 0).map((v, k) => { + tableData1.value = [...tableData1.value, ...e.DarDatas.filter(v => v.Lon !== 0 && v.Lat !== 0).map((v, k) => { return {...v, index: k} - }) + })] console.log(dots) rulerRef.value.setDot(dots) }