zhongrj
2026-06-02 0299e41c6692684d943b4a206472a86ea84ea4b5
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
import request from '@/router/axios'
 
// 降雨等级分布
export const getJydjList = (params) => {
    return request({
        url: '/services/1234567890ABCDEFGHIJKLMN/rain_24_level/api',
        method: 'get',
        apiKey: true,
        params: {
            ...params
        }
    })
}
 
// 水库数量分布
export const getSkslfb = (params) => {
    return request({
        url: '/services/1234567890ABCDEFGHIJKLMN/ad_cd/group/api',
        method: 'get',
        apiKey: true,
        params: {
            pcode: '420000000000',
            ...params
        }
    })
}
 
// 水库规模分布
export const getSkgmfb = (params) => {
    return request({
        url: '/services/1234567890ABCDEFGHIJKLMN/reng_scal/group/api',
        method: 'get',
        apiKey: true,
        params: {
            pcode: '420000000000',
            ...params
        }
    })
}