weather.js 361 B

123456789101112131415161718
  1. import request from '@/utils/request'
  2. // 查询列表监控调阅任务
  3. export function findWeatherList(query) {
  4. return request({
  5. url: '/core/weatherWarning/pageList',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. export function findAreaList() {
  11. return request({
  12. url: '/core/weatherWarning/cityCodeList',
  13. method: 'get',
  14. params: null
  15. })
  16. }