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 @@
+
+
+
+
+ *申领信息
+
+
+
+ {{ form.number}}
+
+
+ {{ form.applyNumber}}
+
+
+ {{ form.applyer}}
+
+
+ {{`${$time.formatDate(form.createTime)}`}}
+
+
+
+ *备件明细
+
+
+
+
+
+
+ 备件名称:{{item.sparePartsName}}
+
+
+
+
+
+ 备件编号:{{item.sparePartsCode}}
+
+
+
+
+ 流程状态:未出库
+
+
+ 流程状态:出库中
+
+
+ 流程状态:已出库
+
+
+
+
+ 库存数量:{{item.currentQty}}
+
+
+
+
+ 申请数量:{{item.applyQty}}
+
+
+
+
+ 已出库数量:{{item.outedQty}}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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 @@
+
+
+
+
+
+
+
+
+
+ {{item.number}}
+
+
+
+
+ 编号:{{item.number}}
+
+
+ 申请单号:{{item.applyNumber}}
+
+
+ 流程状态:
+
+
+
+
+
+
+
+
+
+ 申请人ID:{{item.applyer}}
+
+
+ 审核人:{{item.approver}}
+
+
+ 审核内容:{{item.approveContent}}
+
+
+ 审核时间:{{`${$time.formatDate(item.approveTime)}`}}
+
+
+ 申请时间:{{`${$time.formatDate(item.createTime)}`}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file