record.js 1000 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. const config = require("../config")
  2. module.exports = {
  3. //病虫害列表查询
  4. abnormalPlan: {
  5. url: config.base_new_url + "pest_abnormal_plan",
  6. type: "get",
  7. },
  8. //生长异常列表查询
  9. growthAnomalyInfo: {
  10. url: config.base_new_url + "get_growth_anomaly_info",
  11. type: "get",
  12. },
  13. //获取分区记录图片
  14. farmImages: {
  15. url: config.base_new_url + "farm_images",
  16. type: "get",
  17. },
  18. //互动问题记录
  19. writeFarmRecord: {
  20. url: config.base_new_url + "write_farm_record",
  21. type: "post",
  22. },
  23. //识别病虫害
  24. batchPestIdentify: {
  25. url: config.base_new_url + "batch_pest_identify",
  26. type: "post",
  27. },
  28. //分区格网生成
  29. generateGrid: {
  30. url: config.base_new_url + "generate_terrain_grids",
  31. type: "get",
  32. },
  33. //获取遥感时序数
  34. getZoneRsSeries: {
  35. url: config.base_new_url + "get_zone_rs_series",
  36. type: "get",
  37. },
  38. }