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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
| 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
| })
| }
|
| //根据检验单id查询检验单详情
| export function selectInspectsListById(params){
| return request({
| url: '/inspection/selectInspectsListById',
| method: 'get',
| params
| })
| }
|
| //查询所有用户
| export function selectUser(params){
| return request({
| url: '/inspection/selectUser',
| method: 'get',
| params
| })
| }
|
| //查询所有设备
| export function selectEquipment(params){
| return request({
| url: '/inspection/selectEquipment',
| method: 'get',
| params
| })
| }
|
| //新增原材料报检
| export function addMaterial(data){
| return request({
| url: '/raw-material/add',
| method: 'post',
| data
| })
| }
|
| //删除原材料报检
| export function deleteMaterial(data){
| return request({
| url: '/raw-material/delete',
| method: 'post',
| data
| })
| }
|
|