From ab961f2e08637ea3be8c9f3c8cd26512f645ed4e Mon Sep 17 00:00:00 2001 From: icewint Date: Wed, 19 Jun 2024 16:22:35 +0800 Subject: [PATCH] =?UTF-8?q?[important]=E6=B7=BB=E5=8A=A0=E6=89=AB?= =?UTF-8?q?=E7=A0=81=E6=9F=A5=E8=AF=A2=E7=9A=84=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/axios/scan.js | 8 ++ src/router/index.js | 1 + src/view/component/scanRecord/RecordList.vue | 96 +++++++++++++++ src/view/component/scanRecord/SearchForm.vue | 121 +++++++++++++++++++ src/view/tab/dataQuery/ScanRecord.vue | 87 +++++++++++++ 5 files changed, 313 insertions(+) create mode 100644 src/axios/scan.js create mode 100644 src/view/component/scanRecord/RecordList.vue create mode 100644 src/view/component/scanRecord/SearchForm.vue create mode 100644 src/view/tab/dataQuery/ScanRecord.vue diff --git a/src/axios/scan.js b/src/axios/scan.js new file mode 100644 index 0000000..ff63dbf --- /dev/null +++ b/src/axios/scan.js @@ -0,0 +1,8 @@ +import axios from '@/axios/base/base.axios'; + +export default { + // 分页查询扫码记录 + queryScanListWithPage(params) { + return axios.post('/api/wcs/scan/queryScanRecordWithPage', params); + }, +} \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 9c64ea6..033ecf6 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -29,6 +29,7 @@ const routes = [ { path: 'apiRequest', name: 'apiRequest', component:() => import('../view/tab/dataQuery/ApiRequest.vue') }, // 接口请求记录 { path: 'errMsg', name: 'errMsg', component:() => import('../view/tab/dataQuery/ErrMsg.vue') }, // 设备异常信息 { path: 'errMsgBase', name: 'errMsgBase', component:() => import('../view/tab/dataQuery/ErrMsgBase.vue') }, // 设备异常信息基础资料 + { path: 'scanRecord', name: 'scanRecord', component:() => import('../view/tab/dataQuery/ScanRecord.vue') }, // 扫描码查询 // 系统管理 { path: 'settingsData', name: 'settingsData', component:() => import('../view/tab/systemManage/SettingData.vue') }, // 系统设置 // 工具箱 diff --git a/src/view/component/scanRecord/RecordList.vue b/src/view/component/scanRecord/RecordList.vue new file mode 100644 index 0000000..96d04b2 --- /dev/null +++ b/src/view/component/scanRecord/RecordList.vue @@ -0,0 +1,96 @@ + + + + + + \ No newline at end of file diff --git a/src/view/component/scanRecord/SearchForm.vue b/src/view/component/scanRecord/SearchForm.vue new file mode 100644 index 0000000..040fb50 --- /dev/null +++ b/src/view/component/scanRecord/SearchForm.vue @@ -0,0 +1,121 @@ + + + + + + \ No newline at end of file diff --git a/src/view/tab/dataQuery/ScanRecord.vue b/src/view/tab/dataQuery/ScanRecord.vue new file mode 100644 index 0000000..61f5d60 --- /dev/null +++ b/src/view/tab/dataQuery/ScanRecord.vue @@ -0,0 +1,87 @@ + + + + + + \ No newline at end of file