裂变星小程序-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.

142 lines
2.4 KiB

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