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 | 33 ++++++++++++++++++++++++++++----- 1 files changed, 28 insertions(+), 5 deletions(-) diff --git a/zy-acs-flow/src/map/http.js b/zy-acs-flow/src/map/http.js index 5ee59a0..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; @@ -145,14 +146,36 @@ }) } -export const handleControlAgv = async (agvNo, form, callback) => { - await request.post('/map/agv/info', { - agvNo: agvNo, - }, { - headers: { 'Content-Type': 'application/x-www-form-urlencoded' } +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) } -- Gitblit v1.9.1