admin
2024-10-15 6d313a4a6f9f9d7ea65ec50ab0d4491e595edb97
提交 | 用户 | 时间
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
273d64 40 export function unfinishedProcess(query) {
A 41   return request({
42     url: '/bs/formulaChild/unfinishedProcess',
43     method: 'get',
44     params: query
45
46   })
47 }
48
49 export function inPlaceInspection(query) {
50   return request({
51     url: '/bs/formulaChild/inPlaceInspection',
52     method: 'get',
53     params: query
54
55   })
56 }
57
e57a89 58 // 查询配方配置子信息列表
a320dc 59 export function fistSetpNumber(query) {
A 60   return request({
61     url: '/bs/formulaChild/fistSetpNumber',
62     method: 'get',
63     params: query
64
65   })
66 }
67
68 // 查询配方配置子信息列表
273d64 69 export function manualNgOffline(query) {
A 70   return request({
71     url: '/bs/formulaChild/manualNgOffline',
72     method: 'get',
73     params: query
74   })
75 }
76
77 // 查询配方配置子信息列表
06713a 78 export function jrmUpdateResults(query) {
A 79   return request({
80     url: '/bs/formulaChild/jrmUpdateResults',
81     method: 'get',
82     params: query
83   })
84 }
85
86 // 查询配方配置子信息列表
2c7661 87 export function yzUpdateResults(query) {
A 88   return request({
89     url: '/bs/formulaChild/yzUpdateResults',
90     method: 'get',
91     params: query
92
93   })
94 }
95
96 // 查询配方配置子信息列表
8cfe20 97 export function jrmWorkpieceRelease(query) {
A 98   return request({
99     url: '/bs/formulaChild/jrmWorkpieceRelease',
100     method: 'get',
101     params: query
102
103   })
104 }
105
106 // 查询配方配置子信息列表
107 export function clearWorkpieceRelease(query) {
108   return request({
109     url: '/bs/formulaChild/clearWorkpieceRelease',
110     method: 'get',
111     params: query
112
113   })
114 }
115
116 // 查询配方配置子信息列表
e57a89 117 export function workpieceRelease(query) {
118   return request({
119     url: '/bs/formulaChild/workpieceRelease',
120     method: 'get',
121     params: query
122
123   })
124 }
125
b77303 126 // 查询配方配置子信息列表
bdb404 127 export function checkMaterialCode(query) {
A 128   return request({
129     url: '/bs/formulaChild/checkMaterialCode',
130     method: 'get',
131     params: query
132
133   })
134 }
135
136 // 查询配方配置子信息列表
2c7661 137 export function yzUpdateTighteningFormula(query) {
A 138   return request({
139     url: '/bs/formulaChild/yzUpdateTighteningFormula',
140     method: 'get',
141     params: query
142
143   })
144 }
145
146 // 查询配方配置子信息列表
b77303 147 export function updateTighteningFormula(query) {
148   return request({
149     url: '/bs/formulaChild/updateTighteningFormula',
150     method: 'get',
151     params: query
152
153   })
154 }
155
e57a89 156 // 查询配方配置子信息详细
157 export function getFormulaChild(id) {
158   return request({
159     url: '/bs/formulaChild/' + id,
160     method: 'get'
161   })
162 }
163
164 // 新增配方配置子信息
165 export function addFormulaChild(data) {
166   return request({
167     url: '/bs/formulaChild',
168     method: 'post',
169     data: data
170   })
171 }
172
173 // 修改配方配置子信息
174 export function updateFormulaChild(data) {
175   return request({
176     url: '/bs/formulaChild',
177     method: 'put',
178     data: data
179   })
180 }
181
182 // 删除配方配置子信息
183 export function delFormulaChild(id) {
184   return request({
185     url: '/bs/formulaChild/' + id,
186     method: 'delete'
187   })
188 }