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