hailin
2023-08-08 6c59718662d772c5eaeda72826711b39a2e01c1d
src/api/rawMaterials/reportForInspection.js
@@ -10,9 +10,23 @@
}
// 添加检验申请单
export function addInspection() {
export function addInspection(data) {
  return request({
    url: '/inspection/addInspection',
    method: 'post'
    method: 'post',
    headers: {
      'Content-Type': 'multipart/form-data'
    },
    data
  })
}
// 查询所有申请单id查询样品列表
export function getInspectionMaterialListById(params) {
  return request({
    url: '/inspectionMaterialList/selectInspectionMaterialListById/' + params.inspectionId,
    method: 'get',
    params
  })
}