admin
2024-06-15 8cfe20288690f2ba46c804f41f39e8aa48c2dea0
提交 | 用户 | 时间
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 // 查询配方配置子信息列表
a320dc 41 export function fistSetpNumber(query) {
A 42   return request({
43     url: '/bs/formulaChild/fistSetpNumber',
44     method: 'get',
45     params: query
46
47   })
48 }
49
50 // 查询配方配置子信息列表
06713a 51 export function jrmUpdateResults(query) {
A 52   return request({
53     url: '/bs/formulaChild/jrmUpdateResults',
54     method: 'get',
55     params: query
56   })
57 }
58
59 // 查询配方配置子信息列表
2c7661 60 export function yzUpdateResults(query) {
A 61   return request({
62     url: '/bs/formulaChild/yzUpdateResults',
63     method: 'get',
64     params: query
65
66   })
67 }
68
69 // 查询配方配置子信息列表
8cfe20 70 export function jrmWorkpieceRelease(query) {
A 71   return request({
72     url: '/bs/formulaChild/jrmWorkpieceRelease',
73     method: 'get',
74     params: query
75
76   })
77 }
78
79 // 查询配方配置子信息列表
80 export function clearWorkpieceRelease(query) {
81   return request({
82     url: '/bs/formulaChild/clearWorkpieceRelease',
83     method: 'get',
84     params: query
85
86   })
87 }
88
89 // 查询配方配置子信息列表
e57a89 90 export function workpieceRelease(query) {
91   return request({
92     url: '/bs/formulaChild/workpieceRelease',
93     method: 'get',
94     params: query
95
96   })
97 }
98
b77303 99 // 查询配方配置子信息列表
2c7661 100 export function yzUpdateTighteningFormula(query) {
A 101   return request({
102     url: '/bs/formulaChild/yzUpdateTighteningFormula',
103     method: 'get',
104     params: query
105
106   })
107 }
108
109 // 查询配方配置子信息列表
b77303 110 export function updateTighteningFormula(query) {
111   return request({
112     url: '/bs/formulaChild/updateTighteningFormula',
113     method: 'get',
114     params: query
115
116   })
117 }
118
e57a89 119 // 查询配方配置子信息详细
120 export function getFormulaChild(id) {
121   return request({
122     url: '/bs/formulaChild/' + id,
123     method: 'get'
124   })
125 }
126
127 // 新增配方配置子信息
128 export function addFormulaChild(data) {
129   return request({
130     url: '/bs/formulaChild',
131     method: 'post',
132     data: data
133   })
134 }
135
136 // 修改配方配置子信息
137 export function updateFormulaChild(data) {
138   return request({
139     url: '/bs/formulaChild',
140     method: 'put',
141     data: data
142   })
143 }
144
145 // 删除配方配置子信息
146 export function delFormulaChild(id) {
147   return request({
148     url: '/bs/formulaChild/' + id,
149     method: 'delete'
150   })
151 }