From f786be09c7ed79c8887ec413ac19e1caa08a16e7 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期四, 14 三月 2024 16:27:16 +0800
Subject: [PATCH] #

---
 zy-asrs-flow/src/pages/map/utils.js |   38 +++++++++++++++++++++++++++++++++++++-
 1 files changed, 37 insertions(+), 1 deletions(-)

diff --git a/zy-asrs-flow/src/pages/map/utils.js b/zy-asrs-flow/src/pages/map/utils.js
index eb57314..6879330 100644
--- a/zy-asrs-flow/src/pages/map/utils.js
+++ b/zy-asrs-flow/src/pages/map/utils.js
@@ -21,8 +21,8 @@
 })
 
 export const SENSOR_TYPE = Object.freeze({
-    AGV: "AGV",
     SHELF: "SHELF",
+    AGV: "AGV",
 })
 
 export const getRealPosition = (x, y, mapContainer) => {
@@ -240,4 +240,40 @@
 
 export const deepCopy = (data) => {
     return JSON.parse(JSON.stringify(data));
+}
+
+export const pureNumStr = (param) => {
+    if (param) {
+        return Number(param);
+    } else {
+        return '';
+    }
+}
+
+export const findSpriteByUuid = (uuid) => {
+    return mapContainer?.children?.find(child => child?.data?.uuid === uuid);
+}
+
+export const sensorTypeSelectOptions = (intl) => {
+    let options = [];
+    Object.entries(SENSOR_TYPE).forEach(([key, value]) => {
+        switch (key) {
+            case SENSOR_TYPE.SHELF:
+                options.push({
+                    value: value,
+                    label: intl.formatMessage({ id: 'map.sensor.type.shelf', defaultMessage: '璐ф灦' })
+                })
+                break;
+            case SENSOR_TYPE.AGV:
+                options.push({
+                    value: value,
+                    label: intl.formatMessage({ id: 'map.sensor.type.agv', defaultMessage: '鏃犱汉灏忚溅' })
+                })
+                break;
+            default:
+                break;
+        }
+
+    })
+    return options;
 }
\ No newline at end of file

--
Gitblit v1.9.1