weather.js 453 B

123456789101112131415161718
  1. import { HcApi } from '../../request/index'
  2. export default {
  3. async queryWeatherPage(form) {
  4. return HcApi({
  5. url: '/api/blade-business/weather/queryWeatherPage',
  6. method: 'get',
  7. params: form,
  8. })
  9. },
  10. async updateWeatherById(form) {
  11. return HcApi({
  12. url: '/api/blade-business/weather/updateWeatherById',
  13. method: 'post',
  14. data: form,
  15. })
  16. },
  17. }