fitManager.js 906 B

123456789101112131415161718192021222324252627282930313233343536
  1. const config = require("../config")
  2. module.exports = {
  3. fitAreaList: {
  4. url: config.base_url + "fit_manager/fitAreaList",
  5. type: "post",
  6. },
  7. pathPointList: {
  8. url: config.base_url + "fit_manager/pathPointList",
  9. type: "post",
  10. },
  11. pathPointUpdate: {
  12. url: config.base_url + "fit_manager/pathPointUpdate",
  13. type: "post",
  14. },
  15. flyRuntimeInsert: {
  16. url: config.base_url + "fly_runtime/insert",
  17. type: "post",
  18. },
  19. flyRuntimeUpdate: {
  20. url: config.base_url + "fly_runtime/update",
  21. type: "post",
  22. },
  23. flyRuntimeGet: {
  24. url: config.base_url + "fly_runtime/get",
  25. type: "get",
  26. },
  27. flyRuntimeLoad: {
  28. url: config.base_url + "fly_runtime/load",
  29. type: "get",
  30. },
  31. flyGetNewImage:{
  32. url: config.base_url + "fly_runtime/getNewImage",
  33. type: "get",
  34. }
  35. }