wl
2022-12-23 475958b9c193fc364b6bf25af05a50e59375d643
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
import request from '@/plugins/request'
 
export function getAuditList(params) {
    return request({
        url: '/report',
        method: 'get',
        params
    })
}
 
 
export function getImgUrl(val) {
    return request({
        url: '/minio/getUrl',
        method: 'get',
        params: {
            fileName: val
        }
    })
}
 
export function report(params) {
    return request({
        url: '/report',
        method: 'post',
        data: params
    })
}
 
export function getReportById(id) {
    return request({
        url: `/report/${id}`,
        method: 'get',
    })
}
 
export function checkPass(params) {
    return request({
        url: `/report/audit`,
        method: 'post',
        data:params
    })
}