diff --git a/src/api/automatedWarehouse/cancelWcsPallet.js b/src/api/automatedWarehouse/cancelWcsPallet.js new file mode 100644 index 0000000..b0cc286 --- /dev/null +++ b/src/api/automatedWarehouse/cancelWcsPallet.js @@ -0,0 +1,14 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +// ========== 取消WCS组盘相关 ========== - rqrq + +// 检查栈板WCS组盘状态 - rqrq +export const checkPalletWcsStatus = data => createAPI(`/wcsIntegration/checkPalletWcsStatus`, 'post', data) + +// 取消组盘 - rqrq +export const cancelWcsPallet = data => createAPI(`/wcsIntegration/cancelWcsPallet`, 'post', data) + +// 移出全部物料 - rqrq +export const removeAllPalletDetails = data => createAPI(`/wcsIntegration/removeAllPalletDetails`, 'post', data) + + diff --git a/src/router/index.js b/src/router/index.js index a98d36b..2ee5950 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -131,6 +131,7 @@ const globalRoutes = [ {path: "/palletChangeStation",name: "palletChangeStation", component: resolve => require(["@/views/modules/automatedWarehouse/palletChangeStation.vue"], resolve), meta: { transition: 'instant' ,preload: true,keepAlive: true}}, {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}}, ] diff --git a/src/views/main.vue b/src/views/main.vue index fb37579..23e7a77 100644 --- a/src/views/main.vue +++ b/src/views/main.vue @@ -179,6 +179,12 @@
+ diff --git a/src/views/modules/automatedWarehouse/callOut.vue b/src/views/modules/automatedWarehouse/callOut.vue index 2a9ca5b..a11fe09 100644 --- a/src/views/modules/automatedWarehouse/callOut.vue +++ b/src/views/modules/automatedWarehouse/callOut.vue @@ -18,6 +18,7 @@