miniimage.js 504 B

1234567891011121314151617
  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. ,
  8. getByFarmIdAndDate: {
  9. url: config.base_dev_url + "lz_weather7d/getByFarmIdAndDate/{farmId}/{date}?key="+config.mini_key,
  10. type: "get",
  11. },
  12. findSuitabilityByPoint: {
  13. url: config.base_dev_url + "lz_weather7d/findSuitabilityByPoint/{farmId}/{date}?key="+config.mini_key,
  14. type: "get",
  15. },
  16. }