zhangwencui
2026-04-25 834f0541d1ffb11e0f4d91f9f4ff643f2bf34f40
src/api/productionManagement/productStructure.js
@@ -8,6 +8,13 @@
    method: "get",
  });
}
// 分页查询-产品订单
export function queryList2(id) {
  return request({
    url: "/productionBomStructure/listByBomId/" + id,
    method: "get",
  });
}
export function add(data) {
  return request({
    url: "/productStructure/" + data.bomId,
@@ -24,17 +31,17 @@
  });
}
// 分页查询-产品订单
export function queryList2(id) {
  return request({
    url: "/productionOrderStructure/getBomStructs/" + id,
    method: "get",
  });
}
// export function queryList2(id) {
//   return request({
//     url: "/productionOrderStructure/getBomStructs/" + id,
//     method: "get",
//   });
// }
export function add2(data) {
  return request({
    url: "/productionOrderStructure/addOrUpdateBomStructs/" + data.orderId,
    method: "put",
    data: data.children,
    url: "/productionBomStructure/addOrUpdateBomStructs",
    method: "post",
    data: data,
  });
}