web
13 小时以前 d20fcd6ad28a534d763273c48381cdc36ff2891f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {publicRequest} from "@/utils/request.js";
 
 
/**
 * 获取水温监控报表
 */
export const getGraphicData = (data) => {
    return  publicRequest({
        url: '/waterTemperature/getDataAnalyse',
        method: 'post',
        data
    })
}
 
/**
 * 获取流量监测数据
 */
export const getFlowVideoData = (params) => {
    return  publicRequest({
        url: '/waterFlow/getVideo',
        method: 'get',
        params
    })
}