gaoluyang
2 天以前 36b909e117c3ccc22dd266a94479e2a02335d261
src/api/productionManagement/productStructure.js
@@ -4,7 +4,15 @@
// 分页查询
export function queryList(id) {
  return request({
    url: "/productStructure/listByproductModelId/" + id,
    url: "/productStructure/listBybomId/" + id,
    method: "get",
  });
}
// 根据BOM ID查询父项产品
export function listByBomIdIsParent(bomId) {
  return request({
    url: "/productStructure/listBybomIdIsParent/" + bomId,
    method: "get",
  });
}
@@ -15,4 +23,4 @@
    method: "post",
    data: data,
  });
}
}