From e2753c65a3d42bbda3dfc859122b7bd4435b8699 Mon Sep 17 00:00:00 2001 From: xudan Date: Fri, 19 Sep 2025 09:47:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E5=9D=90=E6=A0=87=E5=A4=84=E7=90=86=E9=80=BB=E8=BE=91=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=9B=91=E6=8E=A7=E6=A8=A1=E5=BC=8F=E4=B8=8B?= =?UTF-8?q?=E7=9A=84=E6=9D=A1=E4=BB=B6=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/movement-supervision.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/movement-supervision.vue b/src/pages/movement-supervision.vue index db06920..3321f95 100644 --- a/src/pages/movement-supervision.vue +++ b/src/pages/movement-supervision.vue @@ -92,7 +92,7 @@ const monitorScene = async () => { // 处理路径坐标转换,参考refreshRobot方法的逻辑 let processedPath: Array<{ x: number; y: number }> | undefined; - if (points?.length) { + if (points?.length && !isMonitorMode.value) { // 新路径:相对于机器人中心的坐标 const cx = x || 37; // 机器人中心X坐标,默认37 const cy = y || 37; // 机器人中心Y坐标,默认37