From 1fc89c6677924058e46c592152fb3bdb74a5df75 Mon Sep 17 00:00:00 2001 From: xudan Date: Fri, 26 Sep 2025 09:53:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=E5=9C=B0=E5=9B=BE=E7=82=B9?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E4=B8=AD=E6=B7=BB=E5=8A=A0=E4=B8=8D=E5=8F=AF?= =?UTF-8?q?=E9=81=BF=E8=AE=A9=E7=82=B9=EF=BC=8C=E5=B9=B6=E5=9C=A8=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E7=BB=84=E4=BB=B6=E4=B8=AD=E6=9B=B4=E6=96=B0=E4=BB=A5?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=96=B0=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/map/constant.ts | 2 ++ src/components/pen-groups.vue | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/src/apis/map/constant.ts b/src/apis/map/constant.ts index fde2413..ebf4c2d 100644 --- a/src/apis/map/constant.ts +++ b/src/apis/map/constant.ts @@ -18,6 +18,8 @@ export enum MapPointType { 临时避让点, /** 库区点 - 仓储作业区域 */ 库区点, + /** 不可避让点 - 机器人不可避让的点位 */ + 不可避让点, /** 密集库区点 - 密集库区点位 */ // 密集库区点, diff --git a/src/components/pen-groups.vue b/src/components/pen-groups.vue index f7ff20a..81fb347 100644 --- a/src/components/pen-groups.vue +++ b/src/components/pen-groups.vue @@ -101,6 +101,7 @@ const updateActiveKeys = () => { { key: '避让点', type: MapPointType.避让点 }, { key: '临时避让点', type: MapPointType.临时避让点 }, { key: '库区点', type: MapPointType.库区点 }, + { key: '不可避让点', type: MapPointType.不可避让点 }, { key: '电梯点', type: MapPointType.电梯点 }, { key: '自动门点', type: MapPointType.自动门点 }, { key: '充电点', type: MapPointType.充电点 }, @@ -278,6 +279,21 @@ watch(keyword, updateActiveKeys); + + + + + +