提交 | 用户 | 时间
|
fd2207
|
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 |
|
02bd0f
|
12 |
// 查询配方配置子信息列表 |
W |
13 |
export function getProductProcess(query) { |
|
14 |
return request({ |
|
15 |
url: '/bs/formulaChild/getProductProcess', |
|
16 |
method: 'post', |
|
17 |
data: query |
|
18 |
}) |
|
19 |
} |
|
20 |
|
fd2207
|
21 |
// 查询配方配置子信息详细 |
懒 |
22 |
export function getFormulaChild(id) { |
|
23 |
return request({ |
|
24 |
url: '/bs/formulaChild/' + id, |
|
25 |
method: 'get' |
|
26 |
}) |
|
27 |
} |
|
28 |
|
|
29 |
// 新增配方配置子信息 |
|
30 |
export function addFormulaChild(data) { |
|
31 |
return request({ |
|
32 |
url: '/bs/formulaChild', |
|
33 |
method: 'post', |
|
34 |
data: data |
|
35 |
}) |
|
36 |
} |
|
37 |
|
|
38 |
// 修改配方配置子信息 |
|
39 |
export function updateFormulaChild(data) { |
|
40 |
return request({ |
|
41 |
url: '/bs/formulaChild', |
|
42 |
method: 'put', |
|
43 |
data: data |
|
44 |
}) |
|
45 |
} |
|
46 |
|
|
47 |
// 删除配方配置子信息 |
|
48 |
export function delFormulaChild(id) { |
|
49 |
return request({ |
|
50 |
url: '/bs/formulaChild/' + id, |
|
51 |
method: 'delete' |
|
52 |
}) |
|
53 |
} |