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