gaoluyang
2025-03-12 21702656c9b09efbd007eb5a27a7a206afb92a7a
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
import resquest from '@/utils/request'
 
 
export function pageInsReport(params) {
    return resquest({
        url: '/insReport/pageInsReport',
        method: 'get',
        params: params
    })
}
 
export function inReport(data) {
    return resquest({
        url: '/insReport/inReport',
        method: 'post',
        data: data
    })
}
 
export function upAll(data) {
    return resquest({
        url: '/insReport/upAll',
        method: 'post',
        data: data
    })
}
 
export function getLaboratoryByReportId(params) {
    return resquest({
        url: '/insReport/getLaboratoryByReportId',
        method: 'get',
        params: params
    })
}
 
export function withdraw(data) {
    return resquest({
        url: '/insReport/withdraw',
        method: 'post',
        data: data
    })
}
 
export function updateApproveConfig(data) {
    return resquest({
        url: '/approveConfig/updateApproveConfig',
        method: 'post',
        data: data
    })
}
 
export function getUserList(params) {
    return resquest({
        url: '/approveConfig/getUserList',
        method: 'get',
        params: params
    })
}
 
export function getApproveConfigList(params) {
    return resquest({
        url: '/approveConfig/getApproveConfigList',
        method: 'get',
        params: params
    })
}
 
export function batchApprovalReport(data) {
    return resquest({
        url: '/insReport/batchApprovalReport',
        method: 'post',
        data: data
    })
}
 
export function downAll(params) {
    return resquest({
        url: '/insReport/downAll',
        method: 'get',
        params: params
    })
}
 
export function getBatchApprovalProgress(params) {
    return resquest({
        url: '/insReport/getBatchApprovalProgress',
        method: 'get',
        params: params
    })
}
 
export function getReportCountInfo(params) {
    return resquest({
        url: '/insReport/getReportCountInfo',
        method: 'get',
        params: params
    })
}
 
export function downReport(params) {
    return resquest({
        url: '/insReport/downReport',
        method: 'get',
        params: params
    })
}
 
export function upReportUrl(data) {
    return resquest({
        url: '/insReport/upReportUrl',
        method: 'post',
        params: data
    })
}
 
export function examineReport(data) {
    return resquest({
        url: '/insReport/examineReport',
        method: 'post',
        data: data
    })
}
 
export function ratifyReport(data) {
    return resquest({
        url: '/insReport/ratifyReport',
        method: 'post',
        data: data
    })
}
 
export function writeReport(data) {
    return resquest({
        url: '/insReport/writeReport',
        method: 'post',
        params: data
    })
}
 
 
export function downLoad(params) {
    return resquest({
        url: '/file/attachmentType/downLoad',
        method: 'get',
        params: params,
        responseType: 'blob'
    })
}
 
export function getReportInfo(params) {
    return resquest({
        url: '/file/attachmentType/getMIME',
        method: 'get',
        params: params
    })
}
 
 
export function getURL(params) {
    return resquest({
        url: '/file/attachmentType/getURL',
        method: 'get',
        params: params
    })
}