wl
2022-07-27 bed60230e71cbdcfbdefc08be80b885f773502eb
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
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',
    })
}