legendLibrary.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. import httputils from '@/api/httputils'
  2. // 图例库-查询
  3. export function queryLegend({
  4. postParams
  5. }) {
  6. return httputils.postJson(`/serve/topology-wanda/graphElement/query`, postParams)
  7. }
  8. // 图例库-新增
  9. export function createLegend({
  10. postParams
  11. }) {
  12. return httputils.postJson(`/serve/topology-wanda/graphElement/create`, postParams)
  13. }
  14. // 图例库-新增
  15. // export function createLegend({
  16. // postParams
  17. // }) {
  18. // return httputils.postJson(`/serve/topology-wanda/graphElement/create`, postParams)
  19. // }
  20. //图例库-更新
  21. export function updateLegend({
  22. postParams
  23. }) {
  24. return httputils.postJson(`/serve/topology-wanda/graphElement/update`, postParams)
  25. }
  26. //图例库-作废
  27. export function deleteLegend({
  28. postParams
  29. }) {
  30. return httputils.postJson(`/serve/topology-wanda/graphElement/deleteByFlag`, postParams)
  31. }
  32. //图例库-系统tree查询
  33. export function getLegendTree({
  34. getParams
  35. }) {
  36. return httputils.getJson(`/serve/topology-wanda/graphCategory/queryByGroup`, getParams)
  37. }
  38. //图例库-系统tree相关表格查询
  39. export function queryRelation({
  40. data,
  41. postParams
  42. }) {
  43. return httputils.fetchJson(`/serve/topology-wanda/graphRelation/query`, data, postParams)
  44. }
  45. //图例库-更新关系图
  46. export function updateRelation({
  47. postParams
  48. }) {
  49. return httputils.postJson(`/serve/topology-wanda/graphRelation/update`, postParams)
  50. }
  51. //图例库-系统tree相关表格删除
  52. export function deleteRelation({
  53. postParams
  54. }) {
  55. return httputils.postJson(`/serve/topology-wanda/graphRelation/delete`, postParams)
  56. }
  57. //图例库-上传图片
  58. export function uploadImg({
  59. postParams
  60. }) {
  61. return httputils.postJson(`/serve/topology-wanda/Picture/create`, postParams)
  62. }
  63. //图例库-穿梭框的搜索
  64. export function getTransfer({
  65. getParams
  66. }) {
  67. return httputils.getJson(`/serve/topology-wanda/graphElement/search`, getParams)
  68. }
  69. //图例库typeId
  70. export function queryTypeId({
  71. postParams
  72. }) {
  73. return httputils.postJson(`/serve/topology-wanda/graphElement/type/query`, postParams)
  74. }
  75. // 搜索图铺位可视化类型信息
  76. export function getVisualization({
  77. getParams
  78. }) {
  79. return httputils.getJson(`/serve/topology-wanda/graphElement/type/search`, getParams)
  80. }
  81. // 图例分层展示
  82. export function groupByCategory({
  83. getParams
  84. }) {
  85. // return httputils.getJson(`/serve/topology-wanda/graphRelation/groupByCategory`, getParams)
  86. return httputils.getJson(`/serve/topology-wanda/graphElement/groupByInfoSystem`, getParams)
  87. }
  88. // 图例搜索
  89. export function graphElementSearch({
  90. postParams
  91. }) {
  92. return httputils.postJson(`/serve/topology-wanda/graphElement/search`, postParams)
  93. }
  94. // 业下设备分类和位置分类树形结构
  95. export function queryDeviceAndPOsition({
  96. postParams
  97. }) {
  98. return httputils.postJson(`/data/data/t_system_wzfl/query`, postParams)
  99. }