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 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 selectStandardMethods(query) {
| return request({
| url: "/standardMethod/selectStandardMethods",
| 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 upStandardProductList(data) {
| return request({
| url: "/standardTree/upStandardProductList",
| method: "post",
| data: data,
| });
| }
|
| // 删除标准树下的检验标准
| export function delStandardMethodByFLSSM(query) {
| return request({
| url: "/standardTree/delStandardMethodByFLSSM",
| method: "delete",
| params: query,
| });
| }
|
| // 删除标准树下的检验项目
| export function delStandardProductByIds(query) {
| return request({
| url: "/standardTree/delStandardProductByIds",
| method: "delete",
| params: query,
| });
| }
|
| // 通过检验标准查询检验项目
| export function selectStandardProductListByMethodId(data) {
| return request({
| url: "/standardTree/selectStandardProductListByMethodId",
| method: "post",
| data: data,
| });
| }
|
| // 通过标准树查询对应的检验项目
| export function selectStandardProductList(query) {
| return request({
| url: "/standardTree/selectStandardProductList",
| method: "get",
| params: query,
| });
| }
|
| // 查询原始记录模板枚举
| export function getStandardTemplate(query) {
| return request({
| url: "/StandardTemplate/getStandardTemplate",
| method: "get",
| params: query,
| });
| }
|
| // 重置标准库单价
| 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,
| });
| }
|
| // 根据标准树进行标准查询
| export function selectsStandardMethodByFLSSM(query) {
| return request({
| url: "/standardTree/selectsStandardMethodByFLSSM",
| method: "get",
| params: query,
| });
| }
|
| // 获取标准树下标准方法枚举
| export function selectStandardMethodEnum() {
| return request({
| url: "/standardTree/selectStandardMethodEnum",
| method: "get",
| });
| }
|
| // 获取标准树(检验下单)
| export function selectStandardTreeList2() {
| return request({
| url: "/standardTree/selectStandardTreeList2",
| method: "get",
| });
| }
|
|