import request from "@/utils/request"; // 查询事件气象 export function WeatherForecast(lng, lat) { return request({ url: "/weatherForecast/queryTheSpecifiedLatitudeAndLongitudeWeather/" + lng + "/" + lat, method: "get", }); }