From e7751b3399787843964f9bcfa5461194df0f7c22 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 08 三月 2024 15:21:43 +0800
Subject: [PATCH] 工艺-BOM:bom导出

---
 src/api/technology/completeproductstructure.js |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/src/api/technology/completeproductstructure.js b/src/api/technology/completeproductstructure.js
index 25da9c1..383537a 100644
--- a/src/api/technology/completeproductstructure.js
+++ b/src/api/technology/completeproductstructure.js
@@ -82,3 +82,20 @@
     data: ids
   })
 }
+
+export function updateObj(obj) {
+  return request({
+    url: '/mes/bom/updateBom',
+    method: 'put',
+    data: obj
+  })
+}
+
+export function exportBom(obj) {
+  return request({
+    url: '/mes/bom/exportBom',
+    method: 'post',
+    data: obj,
+    responseType: 'blob'
+  })
+}

--
Gitblit v1.9.3