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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
| // 标准库相关接口
|
| 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(query) {
| return request({
| url: "/standardTree/delStandardTree",
| method: "delete",
| params: query,
| });
| }
|
| // 获取标准树
| 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 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(query) {
| return request({
| url: "/standardTree/selectsStandardMethodByFLSSM",
| method: "get",
| params: query,
| });
| }
|
| // 修改标准库中的要求值
| export function upStandardProductList(data) {
| return request({
| url: "/standardTree/upStandardProductList",
| method: "post",
| data: data,
| });
| }
|
|
| // 通过检验标准查询检验项目
| export function selectStandardProductListByMethodId(query) {
| return request({
| url: "/standardTree/selectStandardProductListByMethodId",
| method: "get",
| params: query,
| });
| }
|
| // 修改标准库中的区间设置
| 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 copyStandardProductSort(data) {
| return request({
| url: "/standardTree/copyStandardProductSort",
| method: "post",
| data: data,
| });
| }
|
| // 提交需要复制的检验项
| export function copyStandardProductOne(data) {
| return request({
| url: "/standardTree/copyStandardProductOne",
| method: "post",
| data: data,
| });
| }
|
| // 复制检验项
| export function copyStandardProductList(data) {
| return request({
| url: "/standardTree/copyStandardProductList",
| method: "post",
| data: data,
| });
| }
|
| // 提交需要复制的检验项
| export function updateStandardProductListBatch(data) {
| return request({
| url: "/standardTree/updateStandardProductListBatch",
| method: "post",
| data: data,
| });
| }
|
| // 获取标准树
| export function selectStandardTreeList2(query) {
| return request({
| url: "/standardTree/selectStandardTreeList2",
| method: "get",
| params: query,
| });
| }
|
| // 标准库绑定厂家
| export function selectSupplierAsk(data) {
| return request({
| url: "/standardTree/selectSupplierAsk",
| method: "post",
| data: data,
| });
| }
|
| // 新增标准库绑定厂家
| export function addProductSupplierAsk(data) {
| return request({
| url: "/standardTree/addProductSupplierAsk",
| method: "post",
| data: data,
| });
| }
|
| // 修改标准库绑定厂家
| export function updateProductSupplierAsk(data) {
| return request({
| url: "/standardTree/updateProductSupplierAsk",
| method: "post",
| data: data,
| });
| }
|
| // 删除标准库绑定厂家
| export function deleteProductSupplierAsk(query) {
| return request({
| url: "/standardTree/deleteProductSupplierAsk",
| method: "delete",
| params: query,
| });
| }
|
|