warning.js 481 B

1234567891011121314151617181920212223
  1. // 预警首页
  2. const config = require("../config")
  3. module.exports = {
  4. fetchWarningLayer: {
  5. url: config.base_url + "cfg/get",
  6. type: "post",
  7. },
  8. fetchAreaDistrict: {
  9. url: config.base_url + "poi/districtById",
  10. type: "get",
  11. },
  12. fetchFarmLog: {
  13. url: config.base_url + "temp_blue_region/vrOrchardContent",
  14. type: "post",
  15. },
  16. transformLocation: {
  17. url: "/ws/geocoder/v1",
  18. type: "get"
  19. },
  20. }