From a206216c95cb4cc2b3a3c7c1e3d247d6ea87183f Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期五, 08 九月 2023 16:25:00 +0800 Subject: [PATCH] # --- src/main/webapp/views/console.html | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/views/console.html b/src/main/webapp/views/console.html index 3c5f1f0..6fbc391 100644 --- a/src/main/webapp/views/console.html +++ b/src/main/webapp/views/console.html @@ -418,8 +418,10 @@ if (res.code == 200) { let currentLevShuttle = []//褰撳墠妤煎眰灏忚溅闆嗗悎 res.data.forEach((item,idx) => { - if (item.point.z == that.currentLev) { - currentLevShuttle.push(item) + if (item.point != undefined && item.point != null) { + if (item.point.z == that.currentLev) { + currentLevShuttle.push(item); + } } }) that.currentLevShuttleList = currentLevShuttle -- Gitblit v1.9.1