zhouwx
2025-11-11 fc70a46bf84cda4fbe53332f4abd84cf1227fe95
src/api/monitorData/weatherData/index.ts
@@ -21,5 +21,24 @@
            });
        },
        //气象历史数据-分页
        getWeatherHistoryPage: (data: object) => {
            return request({
                url: import.meta.env.VITE_API_URL + `/gasMonitorData/gasAtmosphere/stats`,
                method: 'post',
                data: data
            });
        },
        //气象极值
        getWeatherExtremum: (data: object) => {
            return request({
                url: import.meta.env.VITE_API_URL + `/gasMonitorData/gasAtmosphere/extremum`,
                method: 'post',
                data: data
            });
        },
    };
}