farm.js 402 B

12345678910111213141516
  1. const config = require("../config")
  2. module.exports = {
  3. fetchSpecieList: {
  4. url: config.base_dev_url + "container/specieList",
  5. type: "get",
  6. },
  7. fetchPhenologyList: {
  8. url: config.base_dev_url + "container/phenology/select/{containerId}",
  9. type: "get",
  10. },
  11. saveFarm: {
  12. url: config.base_dev_url + "v2/farm/createFarm",
  13. type: "post",
  14. },
  15. }