diff --git a/src/axios/el.tag.js b/src/axios/el.tag.js index 06ddd74..f72af98 100644 --- a/src/axios/el.tag.js +++ b/src/axios/el.tag.js @@ -13,4 +13,8 @@ export default { insertElTagTask(request) { return axios.post('/api/wcs/elTag/addTask', request); }, + // 分页查询电子标签货位 + getElTagLocationWithPage(request) { + return axios.post('/api/wcs/elTag/queryLocationWithPage', request); + }, } \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index afc1683..fc04527 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -22,6 +22,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: '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/component/ElTagLocationData/ElTagList.vue b/src/view/component/ElTagLocationData/ElTagList.vue new file mode 100644 index 0000000..aac0b42 --- /dev/null +++ b/src/view/component/ElTagLocationData/ElTagList.vue @@ -0,0 +1,117 @@ + + + + + + \ No newline at end of file diff --git a/src/view/component/ElTagLocationData/SearchForm.vue b/src/view/component/ElTagLocationData/SearchForm.vue new file mode 100644 index 0000000..5f91283 --- /dev/null +++ b/src/view/component/ElTagLocationData/SearchForm.vue @@ -0,0 +1,112 @@ + + + + + + \ No newline at end of file diff --git a/src/view/tab/equipmentManage/ElTagLocationData.vue b/src/view/tab/equipmentManage/ElTagLocationData.vue new file mode 100644 index 0000000..573a41b --- /dev/null +++ b/src/view/tab/equipmentManage/ElTagLocationData.vue @@ -0,0 +1,92 @@ + + + + + + \ No newline at end of file