From b289a4c397c65f40aa89d13604a51f9f13a0328f Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期六, 19 十月 2024 10:17:50 +0800
Subject: [PATCH] #

---
 zy-acs-flow/src/map/http.js |   88 +++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 83 insertions(+), 5 deletions(-)

diff --git a/zy-acs-flow/src/map/http.js b/zy-acs-flow/src/map/http.js
index b6cf66b..ea579b8 100644
--- a/zy-acs-flow/src/map/http.js
+++ b/zy-acs-flow/src/map/http.js
@@ -1,6 +1,7 @@
 import request from '@/utils/request';
 import * as Tool from './tool';
 import { DEVICE_TYPE } from './constants';
+import { HANDLE_APP_KEY } from '@/config/setting';
 
 let notify;
 let mapContainer;
@@ -18,9 +19,7 @@
     await request.post('/map/data/fetch', {
         zoneId: zoneId
     }, {
-        headers: {
-            'Content-Type': 'application/x-www-form-urlencoded'
-        }
+        headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
     }).then((res) => {
         const { code, msg, data: { common, point } } = res.data;
         if (code === 200) {
@@ -47,7 +46,7 @@
                             switch (item.type) {
                                 case DEVICE_TYPE.POINT:
                                     sprite.tint = 0xCACDCF;
-                                    sprite.scale.set(0.3, 0.3);
+                                    sprite.scale.set(0.65, 0.65);
                                     break
                                 default:
                                     break
@@ -76,7 +75,7 @@
     mapContainer.children.forEach(child => {
         if (child.data?.uuid) {
             const { type, uuid, no, ...property } = child.data;
-            if (type !== DEVICE_TYPE.AGV) {
+            if (type !== DEVICE_TYPE.AGV && type !== DEVICE_TYPE.POINT) {
                 sprites.push({
                     // graph
                     positionX: child.position.x,
@@ -109,3 +108,82 @@
         console.error(error.message);
     })
 }
+
+export const getLocGroup = async (row, bay, callback) => {
+    await request.post('/map/shelf/group', {
+        row: row,
+        bay: bay
+    }, {
+        headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
+    }).then((res) => {
+        const { code, msg, data } = res.data;
+        if (code === 200) {
+            callback(data)
+        } else {
+            notify.error(msg);
+        }
+    }).catch((error) => {
+        notify.error(error.message);
+        console.error(error.message);
+    })
+}
+
+export const getAgvInfo = async (agvNo, callback) => {
+    await request.post('/map/agv/info', {
+        agvNo: agvNo,
+    }, {
+        headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
+    }).then((res) => {
+        const { code, msg, data } = res.data;
+        if (code === 200) {
+            callback(data)
+        } else {
+            notify.error(msg);
+        }
+    }).catch((error) => {
+        notify.error(error.message);
+        console.error(error.message);
+    })
+}
+
+export const handleControlAgv = async (param, callback) => {
+    await request.post('/handler/control/agv', param, {
+        headers: {
+            'appKey': HANDLE_APP_KEY
+        }
+    }).then((res) => {
+        const { code, msg, data } = res.data;
+        if (code === 200) {
+            notify.success(msg);
+            if (callback) {
+                callback(data)
+            }
+        } else {
+            notify.error(msg);
+        }
+    }).catch((error) => {
+        notify.error(error.message);
+        console.error(error.message);
+    })
+}
+
+export const handleRestoreAgvAll = async (param, callback) => {
+    await request.post('/handler/restore/agv', param, {
+        headers: {
+            'appKey': HANDLE_APP_KEY
+        }
+    }).then((res) => {
+        const { code, msg, data } = res.data;
+        if (code === 200) {
+            notify.success(msg);
+            if (callback) {
+                callback(data)
+            }
+        } else {
+            notify.error(msg);
+        }
+    }).catch((error) => {
+        notify.error(error.message);
+        console.error(error.message);
+    })
+}

--
Gitblit v1.9.1