hailin
2023-07-25 2bd2209ef2c966a036952e5983325c312fb58582
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'
  })
}