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

138 lines
2.3 KiB

2 months ago
1 month ago
2 months ago
2 months ago
2 months ago
2 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. auth: true,
  108. showLoading : true,
  109. },
  110. /**
  111. * 校验视频转发是否达标
  112. */
  113. checkVideoShare: {
  114. url: '/fen/checkVideoShare',
  115. method: 'POST',
  116. auth: true,
  117. showLoading : true,
  118. },
  119. /**
  120. * 校验群转发是否达标
  121. */
  122. checkGroupShare: {
  123. url: '/fen/checkGroupShare',
  124. method: 'POST',
  125. auth: true,
  126. showLoading : true,
  127. },
  128. /**
  129. * 校验文章转发是否达标
  130. */
  131. checkArticleShare: {
  132. url: '/fen/checkArticleShare',
  133. method: 'POST',
  134. auth: true,
  135. showLoading : true,
  136. },
  137. }
  138. export default api