From 80df79c653020b866b6b097d6ca3806591f2636e Mon Sep 17 00:00:00 2001 From: liujun Date: Mon, 20 May 2024 16:08:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=9C=A8=E7=BA=BF=E4=BA=BA?= =?UTF-8?q?=E5=91=98=E6=95=B0bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 0f5d6fd..8c138e9 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -2834,7 +2834,7 @@ export default { console.log(peopleList) for (let i = 0; i < peopleList.length; i++) { const item = peopleList[i] - if ((!item) || (item.ts === 1)) continue + if ((!item)) continue // 将地图上剩余的点与最新的定位人员点进行对比 更新地图上已存在的点 新增地图上之前没有的点 const index = _this.onePerLocArr.findIndex(item1 => { return item1.id.toString() === item.id.toString()