From 821704728ea631be73d7e1a34201b230cb3e9bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=B8=E7=86=9F=E5=90=B4=E5=BD=A6=E7=A5=96?= Date: Sat, 18 Oct 2025 00:51:17 +0800 Subject: [PATCH] 1 --- .../automatedWarehouse/callOutToStation.js | 7 + src/router/index.js | 1 + src/views/main.vue | 6 + .../modules/automatedWarehouse/callOut.vue | 18 +- .../automatedWarehouse/callOutToStation.vue | 483 ++++++++++++++++++ 5 files changed, 506 insertions(+), 9 deletions(-) create mode 100644 src/api/automatedWarehouse/callOutToStation.js create mode 100644 src/views/modules/automatedWarehouse/callOutToStation.vue diff --git a/src/api/automatedWarehouse/callOutToStation.js b/src/api/automatedWarehouse/callOutToStation.js new file mode 100644 index 0000000..b657744 --- /dev/null +++ b/src/api/automatedWarehouse/callOutToStation.js @@ -0,0 +1,7 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +// ========== Call料到指定位置相关 ========== - rqrq + +// Call料并运输到指定区域/站点 - rqrq +export const callOutToStation = data => createAPI(`/wcsIntegration/callOutToStation`, 'post', data) + diff --git a/src/router/index.js b/src/router/index.js index 2ee5950..d6434db 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -132,6 +132,7 @@ const globalRoutes = [ {path: "/palletManualMove",name: "palletManualMove", component: resolve => require(["@/views/modules/automatedWarehouse/palletManualMove.vue"], resolve), meta: { transition: 'instant' ,preload: true,keepAlive: true}}, {path: "/emptyPalletAssembly",name: "emptyPalletAssembly", component: resolve => require(["@/views/modules/automatedWarehouse/emptyPalletAssembly.vue"], resolve), meta: { transition: 'instant' ,preload: true,keepAlive: true}}, {path: "/cancelWcsPallet",name: "cancelWcsPallet", component: resolve => require(["@/views/modules/automatedWarehouse/cancelWcsPallet.vue"], resolve), meta: { transition: 'instant' ,preload: true,keepAlive: true}}, + {path: "/callOutToStation",name: "callOutToStation", component: resolve => require(["@/views/modules/automatedWarehouse/callOutToStation.vue"], resolve), meta: { transition: 'instant' ,preload: true,keepAlive: true}}, ] diff --git a/src/views/main.vue b/src/views/main.vue index 23e7a77..96e269b 100644 --- a/src/views/main.vue +++ b/src/views/main.vue @@ -137,6 +137,12 @@ +