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

143 lines
2.4 KiB

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