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 |   62 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 1 deletions(-)

diff --git a/zy-acs-flow/src/map/http.js b/zy-acs-flow/src/map/http.js
index b329a1f..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;
@@ -108,7 +109,6 @@
     })
 }
 
-
 export const getLocGroup = async (row, bay, callback) => {
     await request.post('/map/shelf/group', {
         row: row,
@@ -127,3 +127,63 @@
         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