spring
2025-04-22 2b2310c50c0a45b2a8fe9964492ee3a96e0f465d
src/api/structural/capability.js
@@ -47,6 +47,33 @@
    method: "get",
  });
}
// 获取检验对象树
export function getItemTreeProduct(query) {
  return request({
    url: "/capacityScope/getItemTreeProduct",
    method: "get",
    params: query,
  });
}
//根据产品获取型号
export function getProductTypes(query) {
  return request({
    url: "/capacityScope/getProductTypes",
    method: "get",
    params: query,
  });
}
//根据产品获取零件号
export function getPartNoList(query) {
  return request({
    url: "/capacityScope/getPartNoList",
    method: "get",
    params: query,
  });
}
// 新增检测对象
export function addTestObject(query) {
  return request({