独墅湖高教创新区危化品智慧管控平台(新危化品)
zhouwx
2025-04-17 a8593f5ca77a934b31bbdd3b919d8e41796cb920
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
import request from "@/utils/request";
 
export function getHoData() {
    return request({
        url: '/statistic/homeDataStatistic',
        method: 'get',
    })
}
 
export function getEntryData() {
    return request({
        url: '/statistic/entryStatistic',
        method: 'get',
    })
}
 
export function getUseData() {
    return request({
        url: '/statistic/useStatistic',
        method: 'get',
    })
}
 
export function getMaxUseData() {
    return request({
        url: '/statistic/maxUseStatistic',
        method: 'get',
    })
}
 
 
export function getHazmatUseList(params) {
    return request({
        url: '/statistic/hazmatUseStatistic',
        method: 'get',
        data: params
    })
}
 
export function unWarningCount() {
    return request({
        url: '/warning/warningCount',
        method: 'get',
    })
}