guanqb
2024-02-02 127188cb84a91dd76bf467423501436b94e019de
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
import request from "@/router/axios"
 
// 档案管理列表
export const getDAGLList = (current, size, params) => {
    return request({
        url: "/api/blade-place/place/ninePage",
        method: "get",
        params: {
            current,
            size,
            ...params
        },
    })
}
 
// 整改情况
export const getZGQKList = (current, size, params) => {
    return request({
        url: "/api/blade-taskPlaceRectification/taskPlaceRectification/getTaskPlaceRectificationList",
        method: "get",
        params: {
            current,
            size,
            ...params
        },
    })
}
 
// 隐患统计
export const getYHTJList = (current, size, params) => {
    return request({
        url: "/api/blade-taskPlaceRectification/taskPlaceRectification/rectificationStatistics",
        method: "get",
        params: {
            current,
            size,
            ...params
        },
    })
}