From 099d9a5da5b562e63e2e56efbe9f799e2bcdd614 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期五, 22 十一月 2024 09:35:24 +0800 Subject: [PATCH] # --- zy-acs-flow/src/map/constants.js | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/zy-acs-flow/src/map/constants.js b/zy-acs-flow/src/map/constants.js index 3c4c9a4..6564ea1 100644 --- a/zy-acs-flow/src/map/constants.js +++ b/zy-acs-flow/src/map/constants.js @@ -1,4 +1,5 @@ +export const ANIMATE_DURING_TIME = 200; export const MAP_MODE = Object.freeze({ OBSERVER_MODE: "1", @@ -26,6 +27,8 @@ AGV: 3, POINT: 2, + + DYNAMIC_ROUTE: 2, }) export const DEVICE_SPRITE_TINT = Object.freeze({ @@ -38,13 +41,23 @@ POINT: 0xCACDCF, }) +export const DEVICE_SPRITE_TINT_DARK = Object.freeze({ + SHELF: 0xdcdde1, + STATION: null, + CHARGE: null, + DIRECTION: null, + + AGV: null, + POINT: 0xf1f2f6, +}) + export const DEVICE_SELECTED_EFFECT_PADDING = Object.freeze({ SHELF: 10, STATION: 10, CHARGE: 10, DIRECTION: 10, - AGV: 10, + AGV: 100, POINT: 100, }) -- Gitblit v1.9.1