liding
2025-04-01 fcc2feb57154cdb9fcedf10c526a1fe57e4bc2cc
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({