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