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
65
66
67
68
69
70
71
| export const qualityInspectionApi = {
| /**
| * @原盐钙镁列表
| */
| pageList: {
| url: '/wrzs/zjqualitycheck/page',
| method: 'GET'
| },
| /**
| * @原盐钙镁新增
| */
| rawSaltsSampling: {
| url: '/wrzs/zjqualitycheck/rawSaltsSampling',
| method: 'post'
| },
| /**
| * @供应商
| */
| getClaimCustomerList: {
| url: '/wrzs/yhcustomer/getYhcustomerList',
| method: 'GET'
| },
| /**
| * @煤仓
| */
| getFiledIdCoalBunker: {
| url: '/wrzs/jccoalbunker/getFiledIdCoalBunker',
| method: 'GET'
| },
| /**
| * @deptId
| */
| getList: { //传deptId
| url: '/wrzs/jccoalfiled/list',
| method: 'GET'
| },
|
| /**
| * @氢氧化钠取样--列表
| */
|
| /**
| * @氢氧化钠取样--新增
| */
| zjqualitycheck: {
| url: '/wrzs/zjqualitycheck',
| method: 'post'
| },
|
| /**
| * @EDC列表
| */
| getTaskCoalOfNoDetection: {
| url: '/wrzs/tmtaskcoal/getTaskCoalOfNoDetection',
| method: 'GET'
| },
| /**
| * @EDC取样 /zjqualitycheck/edcSampling
| */
| edcSampling: {
| url: '/wrzs/zjqualitycheck/edcSampling',
| method: 'post'
| },
| /**
| * @EDC详情 /zjqualitycheck/edcSampling
| */
| getByIdAndSubList: {
| url: '/wrzs/zjqualitycheck/getByIdAndSubList',
| method: 'get'
| },
| }
|
|