From 674a6c7773f7b1927ff68d5b98ed08c0b5744f56 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期六, 19 十月 2024 11:22:40 +0800 Subject: [PATCH] # --- zy-acs-flow/src/map/http.js | 34 ++++++++++++++++++++++++++++------ 1 files changed, 28 insertions(+), 6 deletions(-) diff --git a/zy-acs-flow/src/map/http.js b/zy-acs-flow/src/map/http.js index 5ee59a0..0357eba 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; @@ -44,7 +45,6 @@ // support switch (item.type) { case DEVICE_TYPE.POINT: - sprite.tint = 0xCACDCF; sprite.scale.set(0.65, 0.65); break default: @@ -145,14 +145,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