From d9c1f0b5bf337c9c73fe4afe69ea8d85f2adbfc3 Mon Sep 17 00:00:00 2001 From: gaojs <757918719@qq.com> Date: Thu, 20 Jun 2024 11:33:19 +0800 Subject: [PATCH] =?UTF-8?q?EAM=20=E2=80=94=E2=80=94>=20=20PDA=20=E9=A2=86?= =?UTF-8?q?=E7=94=A8=E5=87=BA=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/eam/location.js | 11 + src/pages.json | 14 ++ src/pages/eam/outLocation/detail.vue | 355 +++++++++++++++++++++++++++ src/pages/eam/outLocation/index.vue | 190 ++++++++++++++ 4 files changed, 570 insertions(+) create mode 100644 src/pages/eam/outLocation/detail.vue create mode 100644 src/pages/eam/outLocation/index.vue diff --git a/src/api/eam/location.js b/src/api/eam/location.js index c4e3fc9..7a9b78d 100644 --- a/src/api/eam/location.js +++ b/src/api/eam/location.js @@ -10,4 +10,15 @@ export function getOutLocation(data) { // 首页扫码获取详情 export function pdaItemAndLocation(number) { return http.get('/eam/location/pdaItemAndLocation?number='+number) +} + + +// 获取领用出库主表分页列表 +export function getOutLocationPage(params) { + return http.get('/eam/spare-parts-out-location-main/page',{params}) +} + +// 获取领用出库子表分页列表 +export function getOutLocationDetailPage(params) { + return http.get('/eam/spare-parts-out-location-detail/page',{params}) } \ No newline at end of file diff --git a/src/pages.json b/src/pages.json index ba5720e..3ef8064 100644 --- a/src/pages.json +++ b/src/pages.json @@ -2107,6 +2107,20 @@ "navigationBarTitleText": "扫码", "enablePullDownRefresh": true } + }, + { + "path": "pages/eam/outLocation/index", + "style": { + "navigationBarTitleText": "领用出库", + "enablePullDownRefresh": true + } + }, + { + "path": "pages/eam/outLocation/detail", + "style": { + "navigationBarTitleText": "详情", + "enablePullDownRefresh": true + } } diff --git a/src/pages/eam/outLocation/detail.vue b/src/pages/eam/outLocation/detail.vue new file mode 100644 index 0000000..fcc3c8f --- /dev/null +++ b/src/pages/eam/outLocation/detail.vue @@ -0,0 +1,355 @@ + + + + + \ No newline at end of file diff --git a/src/pages/eam/outLocation/index.vue b/src/pages/eam/outLocation/index.vue new file mode 100644 index 0000000..7836ff5 --- /dev/null +++ b/src/pages/eam/outLocation/index.vue @@ -0,0 +1,190 @@ + + + + + \ No newline at end of file