gaoluyang
2025-03-07 3d48053ed46588747af87b40a6ccbe0c46d3c434
src/api/structural/laboratoryScope.js
@@ -15,3 +15,51 @@
    params: query
  })
}
// 添加实验室参数
export function addParameter(query) {
  return request({
    url: '/laboratoryScope/addParameter',
    method: 'post',
    data: query
  })
}
// 修改实验室参数
export function upParameter(query) {
  return request({
    url: '/laboratoryScope/upParameter',
    method: 'post',
    data: query
  })
}
// 删除实验室参数
export function delParameter(query) {
  return request({
    url: '/laboratoryScope/delParameter',
    method: 'delete',
    params: query
  })
}
// 查询印章列表
export function selectSeal(query) {
  return request({
    url: '/sealScope/selectSeal',
    method: 'get',
    params: query
  })
}
// 查询印章列表
export function addSeal(query) {
  return request({
    url: '/sealScope/addSeal',
    method: 'post',
    data: query
  })
}
// 查询资质明细列表
export function getCertificationDetail(query) {
  return request({
    url: '/certification/getCertificationDetail',
    method: 'get',
    params: query
  })
}