From f812ba4568216dc6314822685781adf2d4feb835 Mon Sep 17 00:00:00 2001
From: vincentlu <t1341870251@gmail.com>
Date: 星期五, 21 三月 2025 08:08:45 +0800
Subject: [PATCH] #
---
zy-acs-flow/src/map/http.js | 35 +++++++++++++++++++++++++++++++----
1 files changed, 31 insertions(+), 4 deletions(-)
diff --git a/zy-acs-flow/src/map/http.js b/zy-acs-flow/src/map/http.js
index 2fce322..88ab8dc 100644
--- a/zy-acs-flow/src/map/http.js
+++ b/zy-acs-flow/src/map/http.js
@@ -14,7 +14,7 @@
mapContainer = param;
}
-export const fetchMapData = (zoneId, setRcsStatus) => {
+export const fetchMapData = (zoneId, setRcsStatus, setCurSprite) => {
Tool.clearMapData();
return request.post('/map/data/fetch', {
zoneId: zoneId
@@ -49,14 +49,14 @@
// support
switch (item.type) {
case DEVICE_TYPE.POINT:
- sprite.scale.set(0.85, 0.85);
+ sprite.scale.set(pointList.length < 2000 ? 1 : 1.6);
break
default:
break
}
- // }, 50);
mapContainer.addChild(sprite);
+ Tool.beInsight(sprite, setCurSprite);
}
}
})
@@ -184,7 +184,7 @@
})
}
-export const getRouteList = async (zoneId, callback) => {
+export const getRouteList = async (zoneId, callback, errCallBack) => {
await request.post('/map/route/list', {
zoneId: zoneId,
}, {
@@ -195,10 +195,16 @@
callback(data)
} else {
notify.error(msg);
+ if (errCallBack) {
+ errCallBack();
+ }
}
}).catch((error) => {
notify.error(error.message);
console.error(error.message);
+ if (errCallBack) {
+ errCallBack();
+ }
})
}
@@ -283,3 +289,24 @@
console.error(error.message);
})
}
+
+export const handleAgvPatrol = async (param) => {
+ try {
+ const res = await request.post('/handler/agv/patrol', param, {
+ headers: {
+ 'appKey': HANDLE_APP_KEY
+ }
+ });
+ const { code, msg, data } = res.data;
+ if (code === 200) {
+ notify.success(msg);
+ return true;
+ } else {
+ notify.error(msg);
+ }
+ } catch (error) {
+ notify.error(error.message);
+ console.error(error.message);
+ }
+ return false;
+}
\ No newline at end of file
--
Gitblit v1.9.1