import request from "@/utils/request"; // 查询事件气象 export function WeatherForecast(lng, lat) { return request({ url: "/weatherForecast/queryTheSpecifiedLatitudeAndLongitudeWeather/" + lng + "/" + lat, method: "get", }); } // 查询调度联络 export function commandDispatch(data) { return request({ url: "/business/warning/commandAndDispatch", method: "post", data, }); }