123456789101112131415161718 |
- import { HcApi } from '../../request/index'
- export default {
- async queryWeatherPage(form) {
- return HcApi({
- url: '/api/blade-business/weather/queryWeatherPage',
- method: 'get',
- params: form,
- })
- },
- async updateWeatherById(form) {
- return HcApi({
- url: '/api/blade-business/weather/updateWeatherById',
- method: 'post',
- data: form,
- })
- },
- }
|