From f925f563fbb57d434fc4d270b36a9d465224c304 Mon Sep 17 00:00:00 2001 From: zengmingjie Date: Thu, 26 Jun 2025 23:37:03 +0800 Subject: [PATCH] 1 --- src/views/contentData/LeftSidebar/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/contentData/LeftSidebar/index.vue b/src/views/contentData/LeftSidebar/index.vue index b7e0f11..7c19060 100644 --- a/src/views/contentData/LeftSidebar/index.vue +++ b/src/views/contentData/LeftSidebar/index.vue @@ -347,7 +347,12 @@ export default { const match = newVal.some((item) => positionID.includes(item.id)); if (match) { newVal.forEach((newItem) => { - if (newItem.drone_lon !== 0 && newItem.drone_lat !== 0) { + if ( + newItem.drone_lon !== 0 && + newItem.drone_lat !== 0 && + newItem.app_lon !== 0 && + newItem.app_lat !== 0 + ) { // 如果已经存在相同BatchId的数据,重置计时器 if (newItem.BatchId) { const existingTimer = this.droneTimers.get(newItem.BatchId);