gaoluyang
2025-02-17 4153ad698ed765a572c70e4315aefa6a4aead35c
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
  })
}