home.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // 登录校验接口
  2. import httputils from '@/api/httputils'
  3. const baseApi = '/graph/drafts/';
  4. //创建拓扑图
  5. export function creatTopo(postParams: any): any {
  6. return httputils.postJson(`/labsl${baseApi}create`, postParams)
  7. }
  8. // 查询系统图分类
  9. export function queryCategoryGraph(postParams: any): any {
  10. return httputils.postJson(`/labsl/graph-category/query`, postParams)
  11. }
  12. // 查询未发布的图
  13. export function queryDraftsGraph(postParams: any): any {
  14. return httputils.postJson(`/labsl/graph/drafts/query`, postParams)
  15. }
  16. // 查询已发布的图
  17. export function queryPubGraph(postParams: any): any {
  18. return httputils.postJson(`/labsl/graph/pub/query`, postParams)
  19. }
  20. // 发布
  21. export function publishGraph(postParams: any): any {
  22. return httputils.postJson(`/labsl/graph/drafts/publish`, postParams)
  23. }
  24. // 删除未发布
  25. export function deleteDraftsGraph(postParams: any): any {
  26. return httputils.postJson(`/labsl/graph/drafts/recycle`, postParams)
  27. }
  28. // 删除已发布
  29. export function deletePubGraph(postParams: any): any {
  30. return httputils.postJson(`/labsl/graph/pub/recycle`, postParams)
  31. }
  32. // 更新未发布
  33. export function updateDraftsGraph(postParams: any): any {
  34. return httputils.postJson(`/labsl/graph/drafts/update`, postParams)
  35. }
  36. // 更新已发布
  37. export function updatePubGraph(postParams: any): any {
  38. return httputils.postJson(`/labsl/graph/pub/update`, postParams)
  39. }
  40. // 回收站恢复
  41. export function recoveryGraph(postParams: any): any {
  42. return httputils.postJson(`/labsl/graph/recycle/recovery`, postParams)
  43. }