import request from "@/utils/request"; // 查询天气状况 export function getWeatherFacts() { return request({ url: "/weatherForecast/weatherFacts", method: "post", }); } // 按小时查询天气状况 export function getHourlyWeather() { return request({ url: "/weatherForecast/hourlyWeather", method: "post", }); } // 查询气象预警 export function getMeteorologicalEarlyWarning() { return request({ url: "/weatherForecast/meteorologicalEarlyWarning", method: "post", }); } // 查询气象预警数量 export function getQueryTheNumberOfMeteorologicalWarning() { return request({ url: "/weatherForecast/queryTheNumberOfMeteorologicalWarning", method: "post", }); }