From 08a2f6b046b13841ceca4549917a127b54cbe51c Mon Sep 17 00:00:00 2001 From: icewint Date: Sat, 15 Jun 2024 13:55:26 +0800 Subject: [PATCH] =?UTF-8?q?[important]=E6=B7=BB=E5=8A=A0=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=94=B5=E5=AD=90=E6=A0=87=E7=AD=BE=E8=B4=A7=E4=BD=8D?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/axios/el.tag.js | 4 + src/router/index.js | 1 + .../component/ElTagLocationData/ElTagList.vue | 117 ++++++++++++++++++ .../ElTagLocationData/SearchForm.vue | 112 +++++++++++++++++ .../tab/equipmentManage/ElTagLocationData.vue | 92 ++++++++++++++ 5 files changed, 326 insertions(+) create mode 100644 src/view/component/ElTagLocationData/ElTagList.vue create mode 100644 src/view/component/ElTagLocationData/SearchForm.vue create mode 100644 src/view/tab/equipmentManage/ElTagLocationData.vue 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