web
2025-04-30 855deb4dfb6458a1eed217363625b13d58143f58
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",
    })
}