spring
2025-02-14 f9c43ac677055208074879262c670926fbdee44b
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import request from "@/utils/request";
 
// 标准库树排序
export function updateTreeSort(data) {
  return request({
    url: "/standardTree/updateTreeSort",
    method: "post",
    data: data,
  });
}
 
// 标准库检验项排序保存接口
export function resetTreeDragBatch(data) {
  return request({
    url: "/standardTree/resetTreeDragBatch",
    method: "post",
    data: data,
  });
}
 
// 删除标准树的层级
export function delStandardTree(data) {
  return request({
    url: "/standardTree/delStandardTree",
    method: "post",
    data: data,
  });
}
 
// 获取标准树
export function selectStandardTreeList(query) {
  return request({
    url: "/standardTree/selectStandardTreeList",
    method: "get",
    params: query,
  });
}
 
// 获取实验室名称
export function obtainItemParameterList(query) {
  return request({
    url: "/laboratoryScope/obtainItemParameterList",
    method: "get",
    params: query,
  });
}
 
// 获取检验对象枚举
export function selectTestObjectByName(query) {
  return request({
    url: "/capacityScope/selectTestObjectByName",
    method: "get",
    params: query,
  });
}
 
// 给标准树添加检验标准
export function addStandardMethodList(data) {
  return request({
    url: "/standardTree/addStandardMethodList",
    method: "post",
    data: data,
  });
}
 
// 添加标准树
export function addStandardTree(data) {
  return request({
    url: "/standardTree/addStandardTree",
    method: "post",
    data: data,
  });
}
 
// 修改标准树
export function updateStandardTree(data) {
  return request({
    url: "/standardTree/updateStandardTree",
    method: "post",
    data: data,
  });
}
 
// 根据标准树进行标准查询
export function selectsStandardMethodByFLSSM(data) {
  return request({
    url: "/standardTree/selectsStandardMethodByFLSSM",
    method: "post",
    data: data,
  });
}
 
// 修改标准库中的要求值
export function upStandardProductList(data) {
  return request({
    url: "/standardTree/upStandardProductList",
    method: "post",
    data: data,
  });
}
 
// 删除标准树下的检验标准
export function delStandardMethodByFLSSM(data) {
  return request({
    url: "/standardTree/delStandardMethodByFLSSM",
    method: "post",
    data: data,
  });
}
 
// 删除标准树下的检验标准
export function delStandardProductByIds(data) {
  return request({
    url: "/standardTree/delStandardProductByIds",
    method: "post",
    data: data,
  });
}
 
// 新增标准树下的检验项目
export function addStandardProduct(data) {
  return request({
    url: "/standardTree/addStandardProduct",
    method: "post",
    data: data,
  });
}
 
// 通过检验标准查询检验项目
export function selectStandardProductListByMethodId(data) {
  return request({
    url: "/standardTree/selectStandardProductListByMethodId",
    method: "post",
    data: data,
  });
}
 
// 修改标准库中的区间设置
export function updateSection(data) {
  return request({
    url: "/standardTree/updateSection",
    method: "post",
    data: data,
  });
}
 
// 获取产品架构
export function upStandardProducts(data) {
  return request({
    url: "/standardTree/upStandardProducts",
    method: "post",
    data: data,
  });
}
 
// 查询原始记录模板枚举
export function getStandardTemplate(query) {
  return request({
    url: "/StandardTemplate/getStandardTemplate",
    method: "get",
    params: query,
  });
}
 
// 获取标准方法枚举
export function selectStandardMethods(query) {
  return request({
    url: "/standardMethod/selectStandardMethods",
    method: "get",
    params: query,
  });
}
 
// 批量编辑查询检验项目
export function selectStandardProductByMethodId(data) {
  return request({
    url: "/standardTree/selectStandardProductByMethodId",
    method: "post",
    data: data,
  });
}
 
// 批量编辑查询所有检验项目和检验子项枚举
export function selectStandardProductEnumByMethodId(data) {
  return request({
    url: "/standardTree/selectStandardProductEnumByMethodId",
    method: "post",
    data: data,
  });
}
 
// 重置标准库单价
export function resetTreeOfPrice(data) {
  return request({
    url: "/standardTree/resetTreeOfPrice",
    method: "post",
    data: data,
  });
}
 
// 重置标准库工时系数
export function resetTreeOfHour(data) {
  return request({
    url: "/standardTree/resetTreeOfHour",
    method: "post",
    data: data,
  });
}