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 } }) }