裂变星小程序-25.03.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
2.2 KiB

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  1. const api = {
  2. /**
  3. * 获取个人分享记录详情
  4. */
  5. getShareInfo: {
  6. url: '/fen/getShareInfo',
  7. method: 'GET',
  8. auth: true,
  9. debounce: 500,
  10. },
  11. /**
  12. * 删除分享记录
  13. */
  14. deleteLog: {
  15. url: '/fen/deleteLog',
  16. method: 'POST',
  17. auth: true,
  18. limit : 500,
  19. showLoading : true,
  20. },
  21. /**
  22. * 增加或者修改个人分享
  23. */
  24. saveOrUpdateShare: {
  25. url: '/fen/saveOrUpdateShare',
  26. method: 'POST',
  27. auth: true,
  28. limit : 500,
  29. showLoading : true,
  30. },
  31. /**
  32. * 获取视频分享记录详情
  33. */
  34. getVideoShareInfo: {
  35. url: '/fen/getVideoShareInfo',
  36. method: 'GET',
  37. auth: true,
  38. debounce: 500,
  39. },
  40. /**
  41. * 增加或者修改视频分享
  42. */
  43. saveOrUpdateVideoShare: {
  44. url: '/fen/saveOrUpdateVideoShare',
  45. method: 'POST',
  46. auth: true,
  47. limit : 500,
  48. showLoading : true,
  49. },
  50. /**
  51. * 获取群分享记录详情
  52. */
  53. getGroupShareInfo: {
  54. url: '/fen/getGroupShareInfo',
  55. method: 'GET',
  56. auth: true,
  57. debounce: 500,
  58. },
  59. /**
  60. * 增加或者修改群分享
  61. */
  62. saveOrUpdateGroupShare: {
  63. url: '/fen/saveOrUpdateGroupShare',
  64. method: 'POST',
  65. auth: true,
  66. limit : 500,
  67. showLoading : true,
  68. },
  69. /**
  70. * 获取文章分享记录详情
  71. */
  72. getArticleShareInfo: {
  73. url: '/fen/getArticleShareInfo',
  74. method: 'GET',
  75. auth: true,
  76. debounce: 500,
  77. },
  78. /**
  79. * 增加或者修改文章分享
  80. */
  81. saveOrUpdateArticleShare: {
  82. url: '/fen/saveOrUpdateArticleShare',
  83. method: 'POST',
  84. auth: true,
  85. limit : 500,
  86. showLoading : true,
  87. },
  88. /**
  89. * 获取分享记录列表带分页
  90. */
  91. getSharePage: {
  92. url: '/fen/getSharePage',
  93. method: 'GET',
  94. auth: true,
  95. },
  96. /**
  97. * 校验个人转发是否达标
  98. */
  99. checkShare: {
  100. url: '/fen/checkShare',
  101. method: 'POST',
  102. auth: true,
  103. showLoading : true,
  104. },
  105. /**
  106. * 校验视频转发是否达标
  107. */
  108. checkVideoShare: {
  109. url: '/fen/checkVideoShare',
  110. method: 'POST',
  111. auth: true,
  112. showLoading : true,
  113. },
  114. /**
  115. * 校验群转发是否达标
  116. */
  117. checkGroupShare: {
  118. url: '/fen/checkGroupShare',
  119. method: 'POST',
  120. auth: true,
  121. showLoading : true,
  122. },
  123. /**
  124. * 校验文章转发是否达标
  125. */
  126. checkArticleShare: {
  127. url: '/fen/checkArticleShare',
  128. method: 'POST',
  129. auth: true,
  130. showLoading : true,
  131. },
  132. }
  133. export default api