12345678910111213 |
- import {httpApi} from "../../request/httpApi";
- export const queryWeatherPage = (form, msg = true) => httpApi({
- url: '/api/blade-business/weather/queryWeatherPage',
- method: 'get',
- params: form
- }, msg);
- export const updateWeatherById = (form, msg = true) => httpApi({
- url: '/api/blade-business/weather/updateWeatherById',
- method: 'post',
- data: form
- }, msg);
|