diff --git a/oms_web/oms_vue/src/api/inventory/execution.js b/oms_web/oms_vue/src/api/inventory/execution.js
index eed1d478..c9ddff5b 100644
--- a/oms_web/oms_vue/src/api/inventory/execution.js
+++ b/oms_web/oms_vue/src/api/inventory/execution.js
@@ -70,6 +70,14 @@ export function recallExecution(id) {
params: { id }
})
}
+export function exportExecution(data) {
+ return request({
+ url: `/inventory/execution/vue/export`,
+ method: 'post',
+ data: { data },
+ headers: { 'Content-Type': 'multipart/form-data' },
+ })
+}
// 查询出库预览信息
export function getCheckOutPreview(data) {
diff --git a/oms_web/oms_vue/src/views/inventory/execution/index.vue b/oms_web/oms_vue/src/views/inventory/execution/index.vue
index a9fb26a7..43a554b8 100644
--- a/oms_web/oms_vue/src/views/inventory/execution/index.vue
+++ b/oms_web/oms_vue/src/views/inventory/execution/index.vue
@@ -81,7 +81,13 @@
重置
+
+
+ 导出
+
+
+
@@ -212,11 +218,11 @@