-
admin
2024-04-29 2c7661d0bca739a9b403cdd420d2b91eb77470e6
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
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 yzUpdateResults(query) {
  return request({
    url: '/bs/formulaChild/yzUpdateResults',
    method: 'get',
    params: query
 
  })
}
 
// 查询配方配置子信息列表
export function workpieceRelease(query) {
  return request({
    url: '/bs/formulaChild/workpieceRelease',
    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'
  })
}