From 959f4fb57a7bc3fd3d05d700db8fa0aa733b4791 Mon Sep 17 00:00:00 2001 From: icewint Date: Tue, 25 Jun 2024 07:54:45 +0800 Subject: [PATCH] =?UTF-8?q?[important]=E6=B7=BB=E5=8A=A0=E5=BA=93?= =?UTF-8?q?=E5=89=8D=E8=BE=93=E9=80=81=E6=9C=BA=E4=BF=A1=E6=81=AF=E7=9A=84?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/axios/stacker.convey.js | 9 ++ src/router/index.js | 1 + .../tab/equipmentManage/StackerConvey.vue | 127 ++++++++++++++++++ 3 files changed, 137 insertions(+) create mode 100644 src/axios/stacker.convey.js create mode 100644 src/view/tab/equipmentManage/StackerConvey.vue diff --git a/src/axios/stacker.convey.js b/src/axios/stacker.convey.js new file mode 100644 index 0000000..e758a92 --- /dev/null +++ b/src/axios/stacker.convey.js @@ -0,0 +1,9 @@ +import axios from '@/axios/base/base.axios'; + +export default { + // 获取所有库前输送机状态 + getStackerConveyInfo() { + return axios.get('/api/wcs/stackerConvey/queryStackerConveyInfo') + }, + +} \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 033ecf6..dafd77b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -24,6 +24,7 @@ const routes = [ { path: 'location', name: 'location', component:() => import('@/view/tab/equipmentManage/LocationData.vue') }, // 点位/库位管理 { path: 'stackerData', name: 'stackerData', component:() => import('@/view/tab/equipmentManage/StackerData.vue') }, // 堆垛机管理 { path: 'elTagLocationData', name: 'elTagLocationData', component:() => import('@/view/tab/equipmentManage/ElTagLocationData.vue')}, // 电子标签货位管理 + { path: 'stackerConvey', name: 'stackerConvey', component:() => import('@/view/tab/equipmentManage/StackerConvey.vue')}, // 堆垛机输送线管理 // 数据查询 { path: 'apiAccept', name: 'apiAccept', component:() => import('../view/tab/dataQuery/ApiAccept.vue') }, // 接口接收记录 { path: 'apiRequest', name: 'apiRequest', component:() => import('../view/tab/dataQuery/ApiRequest.vue') }, // 接口请求记录 diff --git a/src/view/tab/equipmentManage/StackerConvey.vue b/src/view/tab/equipmentManage/StackerConvey.vue new file mode 100644 index 0000000..7bdea11 --- /dev/null +++ b/src/view/tab/equipmentManage/StackerConvey.vue @@ -0,0 +1,127 @@ + + + + + + \ No newline at end of file