Goldennfish
2023-07-25 ccfd5dc264d07471d831d2287ff03f293c295981
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/utils/request'
 
// 查询所有申请单列表
export function getInspectionList(params) {
  return request({
    url: '/inspection/selectAllInspection',
    method: 'get',
    params
  })
}
 
// 添加检验申请单
export function addInspection() {
  return request({
    url: '/inspection/addInspection',
    method: 'post'
  })
}