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