This commit is contained in:
zengmingjie 2025-06-26 23:37:03 +08:00
parent ce846cc58f
commit f925f563fb
1 changed files with 6 additions and 1 deletions

View File

@ -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);