weather.js 382 B

12345678910111213
  1. import {httpApi} from "../../request/httpApi";
  2. export const queryWeatherPage = (form, msg = true) => httpApi({
  3. url: '/api/blade-business/weather/queryWeatherPage',
  4. method: 'get',
  5. params: form
  6. }, msg);
  7. export const updateWeatherById = (form, msg = true) => httpApi({
  8. url: '/api/blade-business/weather/updateWeatherById',
  9. method: 'post',
  10. data: form
  11. }, msg);