visual.js 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // 可视化服务相关接口
  2. import $http from "@/utils/request";
  3. export const getLayerList = (data) =>
  4. $http({
  5. method: "post",
  6. url: "/visualization/outPut/getLayerList",
  7. data,
  8. notShowLoading: true,
  9. });
  10. export const getElementList = (data) =>
  11. $http({
  12. method: "post",
  13. url: "/visualization/outPut/getElementList",
  14. data,
  15. notShowLoading: true,
  16. });
  17. export const getMenuList = (data) =>
  18. $http({
  19. method: "post",
  20. url: "/visualization/outPut/getMenuList",
  21. data,
  22. notShowLoading: true,
  23. });
  24. export const getFooterNavigationList = (data) =>
  25. $http({
  26. method: "post",
  27. url: "/Visualization/FooterNavigation/GetList",
  28. data,
  29. notShowLoading: true,
  30. });
  31. export const getDeptsTree = (data) =>
  32. $http({
  33. method: "post",
  34. url: "/System/Department/GetDeptsTree",
  35. data,
  36. notShowLoading: true,
  37. });