提交 | 用户 | 时间
|
e57a89
|
1 |
import request from '@/utils/request' |
懒 |
2 |
|
|
3 |
// 查询配方配置子信息列表 |
|
4 |
export function listFormulaChild(query) { |
|
5 |
return request({ |
|
6 |
url: '/bs/formulaChild/list', |
|
7 |
method: 'get', |
|
8 |
params: query |
|
9 |
}) |
|
10 |
} |
|
11 |
|
0caf87
|
12 |
// 不分页查询配方配置子信息列表 |
懒 |
13 |
export function noPageListFormulaChild(query) { |
|
14 |
return request({ |
|
15 |
url: '/bs/formulaChild/noPageListFormulaChild', |
|
16 |
method: 'get', |
|
17 |
params: query |
|
18 |
}) |
|
19 |
} |
|
20 |
|
e57a89
|
21 |
// 查询配方配置子信息列表 |
懒 |
22 |
export function releaseCheck(query) { |
|
23 |
return request({ |
|
24 |
url: '/bs/formulaChild/releaseCheck', |
|
25 |
method: 'get', |
|
26 |
params: query |
|
27 |
}) |
|
28 |
} |
|
29 |
|
|
30 |
// 查询配方配置子信息列表 |
|
31 |
export function updateResults(query) { |
|
32 |
return request({ |
|
33 |
url: '/bs/formulaChild/updateResults', |
|
34 |
method: 'get', |
|
35 |
params: query |
|
36 |
|
|
37 |
}) |
|
38 |
} |
|
39 |
|
|
40 |
// 查询配方配置子信息列表 |
06713a
|
41 |
export function jrmUpdateResults(query) { |
A |
42 |
return request({ |
|
43 |
url: '/bs/formulaChild/jrmUpdateResults', |
|
44 |
method: 'get', |
|
45 |
params: query |
|
46 |
}) |
|
47 |
} |
|
48 |
|
|
49 |
// 查询配方配置子信息列表 |
2c7661
|
50 |
export function yzUpdateResults(query) { |
A |
51 |
return request({ |
|
52 |
url: '/bs/formulaChild/yzUpdateResults', |
|
53 |
method: 'get', |
|
54 |
params: query |
|
55 |
|
|
56 |
}) |
|
57 |
} |
|
58 |
|
|
59 |
// 查询配方配置子信息列表 |
e57a89
|
60 |
export function workpieceRelease(query) { |
懒 |
61 |
return request({ |
|
62 |
url: '/bs/formulaChild/workpieceRelease', |
|
63 |
method: 'get', |
|
64 |
params: query |
|
65 |
|
|
66 |
}) |
|
67 |
} |
|
68 |
|
b77303
|
69 |
// 查询配方配置子信息列表 |
2c7661
|
70 |
export function yzUpdateTighteningFormula(query) { |
A |
71 |
return request({ |
|
72 |
url: '/bs/formulaChild/yzUpdateTighteningFormula', |
|
73 |
method: 'get', |
|
74 |
params: query |
|
75 |
|
|
76 |
}) |
|
77 |
} |
|
78 |
|
|
79 |
// 查询配方配置子信息列表 |
b77303
|
80 |
export function updateTighteningFormula(query) { |
懒 |
81 |
return request({ |
|
82 |
url: '/bs/formulaChild/updateTighteningFormula', |
|
83 |
method: 'get', |
|
84 |
params: query |
|
85 |
|
|
86 |
}) |
|
87 |
} |
|
88 |
|
e57a89
|
89 |
// 查询配方配置子信息详细 |
懒 |
90 |
export function getFormulaChild(id) { |
|
91 |
return request({ |
|
92 |
url: '/bs/formulaChild/' + id, |
|
93 |
method: 'get' |
|
94 |
}) |
|
95 |
} |
|
96 |
|
|
97 |
// 新增配方配置子信息 |
|
98 |
export function addFormulaChild(data) { |
|
99 |
return request({ |
|
100 |
url: '/bs/formulaChild', |
|
101 |
method: 'post', |
|
102 |
data: data |
|
103 |
}) |
|
104 |
} |
|
105 |
|
|
106 |
// 修改配方配置子信息 |
|
107 |
export function updateFormulaChild(data) { |
|
108 |
return request({ |
|
109 |
url: '/bs/formulaChild', |
|
110 |
method: 'put', |
|
111 |
data: data |
|
112 |
}) |
|
113 |
} |
|
114 |
|
|
115 |
// 删除配方配置子信息 |
|
116 |
export function delFormulaChild(id) { |
|
117 |
return request({ |
|
118 |
url: '/bs/formulaChild/' + id, |
|
119 |
method: 'delete' |
|
120 |
}) |
|
121 |
} |