web
5 天以前 8f50c8203c8df64dd0a566b228bae7f69156e109
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { publicRequest } from '@/utils/request'
 
/**
 * 获取生态流量监测点
 */
export const getFlowPointList = () => {
    return publicRequest({
        url: "/waterFlow/getPointList",
        method: "GET",
    })
}
 
/**
 * 获取水温监测点
 */
export const getTemperaturePointList = () => {
    return publicRequest({
        url: "/waterTemperature/getPointList",
        method: "GET",
    })
}