web
5 天以前 15c5e70dd90a0389d70b3d855977dfd9070588fc
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",
    })
}