-
admin
2024-06-18 bdb4046a1ed5358a94cc9ce846f2a1ec88e5d5ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import request from '@/utils/request'
 
// 查询配方配置子信息列表
export function listFormulaChild(query) {
  return request({
    url: '/bs/formulaChild/list',
    method: 'get',
    params: query
  })
}
 
// 不分页查询配方配置子信息列表
export function noPageListFormulaChild(query) {
  return request({
    url: '/bs/formulaChild/noPageListFormulaChild',
    method: 'get',
    params: query
  })
}
 
// 查询配方配置子信息列表
export function releaseCheck(query) {
  return request({
    url: '/bs/formulaChild/releaseCheck',
    method: 'get',
    params: query
  })
}
 
// 查询配方配置子信息列表
export function updateResults(query) {
  return request({
    url: '/bs/formulaChild/updateResults',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function fistSetpNumber(query) {
  return request({
    url: '/bs/formulaChild/fistSetpNumber',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function jrmUpdateResults(query) {
  return request({
    url: '/bs/formulaChild/jrmUpdateResults',
    method: 'get',
    params: query
  })
}
 
// 查询配方配置子信息列表
export function yzUpdateResults(query) {
  return request({
    url: '/bs/formulaChild/yzUpdateResults',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function jrmWorkpieceRelease(query) {
  return request({
    url: '/bs/formulaChild/jrmWorkpieceRelease',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function clearWorkpieceRelease(query) {
  return request({
    url: '/bs/formulaChild/clearWorkpieceRelease',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function workpieceRelease(query) {
  return request({
    url: '/bs/formulaChild/workpieceRelease',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function checkMaterialCode(query) {
  return request({
    url: '/bs/formulaChild/checkMaterialCode',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function yzUpdateTighteningFormula(query) {
  return request({
    url: '/bs/formulaChild/yzUpdateTighteningFormula',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function updateTighteningFormula(query) {
  return request({
    url: '/bs/formulaChild/updateTighteningFormula',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息详细
export function getFormulaChild(id) {
  return request({
    url: '/bs/formulaChild/' + id,
    method: 'get'
  })
}
 
// 新增配方配置子信息
export function addFormulaChild(data) {
  return request({
    url: '/bs/formulaChild',
    method: 'post',
    data: data
  })
}
 
// 修改配方配置子信息
export function updateFormulaChild(data) {
  return request({
    url: '/bs/formulaChild',
    method: 'put',
    data: data
  })
}
 
// 删除配方配置子信息
export function delFormulaChild(id) {
  return request({
    url: '/bs/formulaChild/' + id,
    method: 'delete'
  })
}