image.js 583 B

1234567891011121314151617181920
  1. const config = require("../config")
  2. module.exports = {
  3. list: {
  4. url: config.base_dev_url + "image/list?key="+config.mini_key,
  5. type: "post",
  6. },
  7. pointByBlueZones:{
  8. url: config.base_dev_url + "image/pointByBlueZones",
  9. type: "post",
  10. },
  11. pointByRegionId:{
  12. url: config.base_dev_url + "image/pointByRegionId?key="+config.mini_key,
  13. type: "post",
  14. },
  15. findSuitabilityByPoint: {
  16. url: config.base_dev_url + "lz_weather7d/findSuitabilityByPoint/{farmId}/{date}?key="+config.mini_key,
  17. type: "get",
  18. },
  19. }