1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import request from '@/utils/request'
|
| // 查询原材料检验列表
| export function getRawMaterialList(params) {
| return request({
| url: '/raw-material/selectAll',
| method: 'get',
| params
| })
| }
|
| export function addInspect(data){
| return request({
| url: '/inspection/addInspect',
| method: 'post',
| data
| })
| }
|
| export function selectInspectsListById(params){
| return request({
| url: '/inspection/selectInspectsListById',
| method: 'get',
| params
| })
| }
|
|