weal.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. import { post, get, postL, getL } from '@/utils/http'
  2. import { trans } from './base'
  3. import { SERVICE_URL } from '@/utils/config'
  4. export default {
  5. apis: {
  6. LIST: SERVICE_URL + '/api/luckRoom',
  7. DETAIL: SERVICE_URL + '/api/luckRoom/detail',
  8. JOIN: SERVICE_URL + '/api/luckRoom/participate',
  9. // RECORD: SERVICE_URL + '/api/luckRoom/participateRecord',
  10. RECORD: SERVICE_URL + '/api/luckRoom/participateRecordMy',
  11. LIST_CREATE: SERVICE_URL + '/api/luckRoom/myCreate',
  12. CREATE: SERVICE_URL + '/api/luckRoom/create',
  13. ROOM_AUDIT_RECORD: SERVICE_URL + '/api/luckRoom/roomParticipateRecord',
  14. ROOM_AUDIT_PASS: SERVICE_URL + '/api/luckRoom/auditPass',
  15. ROOM_AUDIT_UNPASS: SERVICE_URL + '/api/luckRoom/auditUnpass',
  16. REEL_DETAIL: SERVICE_URL + '/api/luckWheel/detail',
  17. REEL_JOIN: SERVICE_URL + '/api/luckWheel/participate',
  18. REEL_RECORD: SERVICE_URL + '/api/luckWheel/listAllParticipate',
  19. TOPIC_LIST: SERVICE_URL + '/api/vote/listTopic',
  20. TOPIC_JOIN: SERVICE_URL + '/api/vote/participate',
  21. TOPIC_CREATE: SERVICE_URL + '/api/vote/createTopic',
  22. ACTIVITY: SERVICE_URL + '/api/activity/newbieGiftBag/info',
  23. ACTIVITY_JOIN: SERVICE_URL + '/api/activity/participate',
  24. WISH_LIST: SERVICE_URL + '/api/substituteGoods/list',
  25. WISH_PREVIEW: SERVICE_URL + '/api/substituteOrder/preSubmit',
  26. WISH_SUBMIT: SERVICE_URL + '/api/substituteOrder/submit',
  27. ACTIVITY_TAB: SERVICE_URL + '/api/activity/doubleEgg/info',
  28. ACTIVITY_TAB_DETAIL: SERVICE_URL + '/api/activity/doubleEgg/detail',
  29. POPULARIZE: SERVICE_URL + '/api/activity/magicCall/detail',
  30. POPULARIZE_RANK: SERVICE_URL + '/api/activity/magicCall/listBillboard',
  31. POPULARIZE_PEOPLE: SERVICE_URL + '/api/activity/magicCall/pagePromotee',
  32. SPRINT: SERVICE_URL + '/api/activity/magicSprint/detail',
  33. SPRINT_RANK: SERVICE_URL + '/api/activity/magicSprint/listBillboard',
  34. RED_PACKET_RAIN_INFO: SERVICE_URL + '/api/activity/redPacketRain/info',
  35. RED_PACKET_RAIN: SERVICE_URL + '/api/activity/redPacketRain/detail',
  36. RED_PACKET_RAIN_JOIN: SERVICE_URL + '/api/activity/redPacketRain/participate',
  37. FIREWORKS: SERVICE_URL + '/api/activity/magicFireworks/detail',
  38. RICH: SERVICE_URL + '/api/activity/richman/detail',
  39. RICH_ROLL: SERVICE_URL + '/api/activity/richman/roll',
  40. RICH_RANK: SERVICE_URL + '/api/activity/richman/listBillboard',
  41. WINNINGRECORD: SERVICE_URL + '/api/luckRoom/winningTheLotteryRecord',
  42. DOLLDETAIL: SERVICE_URL + '/api/activity/dollMachine/detail',
  43. PARTICIPATE: SERVICE_URL + '/api/activity/dollMachine/participate',
  44. PAGEALLPARTICIPATE: SERVICE_URL + '/api/activity/dollMachine/pageAllParticipate',
  45. MATERIALLIST: SERVICE_URL + '/api/activity/material/list',
  46. MATERIALSUBMIT: SERVICE_URL + '/api/activity/material/submit',
  47. EXPECTEDMONEY: SERVICE_URL + '/api/activity/material/expectedMoney',
  48. CARVEUPMONEY: SERVICE_URL + '/api/activity/material/carveUpMoney',
  49. LUCKPOOLCOIN: SERVICE_URL + '/api/luckPool/luckPoolCoin',
  50. LUCKNUMLIST: SERVICE_URL + '/api/luckRoom/mySign'
  51. },
  52. async list(current, size, keyword, type, loading = false) {
  53. const res = await trans(post(this.apis.LIST, { current, size, keyword, type }, { loading }))
  54. return res.data
  55. },
  56. async detail(params, loading = false) {
  57. const res = await trans(get(this.apis.DETAIL, { ...params }, { loading }))
  58. return res.data
  59. },
  60. async join(roomId, password = '', shareId) {
  61. const res = await trans(getL(this.apis.JOIN, { roomId, password, shareId }))
  62. return res.success
  63. },
  64. async join2(roomId) {
  65. const res = await trans(get(this.apis.JOIN, { roomId }))
  66. return res
  67. },
  68. async record(current, size, loading = false) {
  69. const res = await trans(post(this.apis.RECORD, { current, size }, { loading }))
  70. return res.data
  71. },
  72. async createList(current, size, loading = false) {
  73. const res = await trans(post(this.apis.LIST_CREATE, { current, size }, { loading }))
  74. return res.data
  75. },
  76. async create(param) {
  77. const res = await trans(postL(this.apis.CREATE, param))
  78. return res.success
  79. },
  80. async roomAuditRecord(current, size, roomId, auditStatus, loading = false) {
  81. const res = await trans(
  82. post(this.apis.ROOM_AUDIT_RECORD, { current, size, roomId, auditStatus }, { loading })
  83. )
  84. return res.data
  85. },
  86. async roomAuditPass(id) {
  87. const res = await trans(postL(this.apis.ROOM_AUDIT_PASS, { id }))
  88. return res.success
  89. },
  90. async roomAuditUnPass(id) {
  91. const res = await trans(postL(this.apis.ROOM_AUDIT_UNPASS, { id }))
  92. return res.success
  93. },
  94. async reelDetail(wheelId) {
  95. const res = await trans(get(this.apis.REEL_DETAIL, { wheelId }))
  96. return res.data
  97. },
  98. async reelJoin(wheelId) {
  99. const res = await trans(post(this.apis.REEL_JOIN, { wheelId }))
  100. return res
  101. },
  102. async reelList(wheelId, current, size, loading = false) {
  103. const res = await trans(
  104. post(this.apis.REEL_RECORD, { wheelId, current, size }, { loading })
  105. )
  106. return res.data
  107. },
  108. async topics(current, size, loading = false) {
  109. const res = await trans(post(this.apis.TOPIC_LIST, { current, size }, { loading }))
  110. return res.data
  111. },
  112. async topicJoin(topicId, answer) {
  113. const res = await trans(postL(this.apis.TOPIC_JOIN, { topicId, answer }))
  114. return res.success
  115. },
  116. async topicCreate(question, answerSet) {
  117. const res = await trans(postL(this.apis.TOPIC_CREATE, { question, answerSet }))
  118. return res.success
  119. },
  120. async activity() {
  121. const res = await trans(get(this.apis.ACTIVITY))
  122. return res.success && res.data
  123. },
  124. async joinActivity(activityId, loading) {
  125. const res = await trans(post(this.apis.ACTIVITY_JOIN, { activityId }, { loading }))
  126. return res.success
  127. },
  128. async wishList() {
  129. const res = await trans(post(this.apis.WISH_LIST))
  130. return res.data
  131. },
  132. async wishPreview(substituteGoodsId, inventoryIds) {
  133. const res = await trans(postL(this.apis.WISH_PREVIEW, { substituteGoodsId, inventoryIds }))
  134. return res.data
  135. },
  136. async wishSubmit(substituteGoodsId, inventoryIds) {
  137. const res = await trans(postL(this.apis.WISH_SUBMIT, { substituteGoodsId, inventoryIds }))
  138. return res.success
  139. },
  140. async activityTab() {
  141. const res = await trans(get(this.apis.ACTIVITY_TAB))
  142. return res.success ? res.data : null
  143. },
  144. async activityTabDetail() {
  145. const res = await trans(get(this.apis.ACTIVITY_TAB_DETAIL))
  146. return res.success ? res.data : null
  147. },
  148. async popularize() {
  149. const res = await trans(get(this.apis.POPULARIZE))
  150. if (res.success && res.data && res.data.prizeList) {
  151. return res.data.prizeList
  152. }
  153. return null
  154. },
  155. async popularizeRank() {
  156. const res = await trans(get(this.apis.POPULARIZE_RANK))
  157. if (res.success && res.data) {
  158. return res.data
  159. }
  160. return null
  161. },
  162. async popularizePeoples(current, size, promoter, loading = false) {
  163. const res = await trans(
  164. post(this.apis.POPULARIZE_PEOPLE, { current, size, promoter }, { loading })
  165. )
  166. return res.data
  167. },
  168. async sprint() {
  169. const res = await trans(get(this.apis.SPRINT))
  170. if (res.success && res.data && res.data.prizeList) {
  171. return res.data.prizeList
  172. }
  173. return null
  174. },
  175. async sprintRank() {
  176. const res = await trans(get(this.apis.SPRINT_RANK))
  177. if (res.success && res.data) {
  178. return res.data
  179. }
  180. return null
  181. },
  182. async redPacketRainInfo() {
  183. const res = await trans(get(this.apis.RED_PACKET_RAIN_INFO))
  184. if (res.success) {
  185. return res.data
  186. }
  187. return null
  188. },
  189. async redPacketRain(loading) {
  190. const res = await trans(get(this.apis.RED_PACKET_RAIN, null, { loading }))
  191. if (res.success) {
  192. return res.data
  193. }
  194. return null
  195. },
  196. async redPacketRainJoin() {
  197. const res = await trans(postL(this.apis.RED_PACKET_RAIN_JOIN))
  198. if (res.success) {
  199. return res.data
  200. }
  201. return null
  202. },
  203. async fireworks(loading = true) {
  204. const res = await trans(get(this.apis.FIREWORKS, null, { loading }))
  205. if (res.success) {
  206. return res.data
  207. }
  208. return null
  209. },
  210. async rich(loading) {
  211. const res = await trans(get(this.apis.RICH, null, { loading }))
  212. return res.success ? res.data : null
  213. },
  214. async richRoll() {
  215. const res = await trans(post(this.apis.RICH_ROLL, null, { showMsg: true }))
  216. return res.success ? res.data : null
  217. },
  218. async richRank() {
  219. const res = await trans(get(this.apis.RICH_RANK))
  220. if (res.success && res.data) {
  221. return res.data
  222. }
  223. return null
  224. },
  225. async winningTheLotteryRecord(roomId) {
  226. const res = await trans(get(this.apis.WINNINGRECORD, { roomId }))
  227. return res.data
  228. },
  229. async catchDollDetail() {
  230. const res = await trans(get(this.apis.DOLLDETAIL))
  231. return res
  232. },
  233. async dollLottery(quantity) {
  234. const res = await trans(post(this.apis.PARTICIPATE, quantity))
  235. return res
  236. },
  237. async prizeReslut(param, loading = false) {
  238. const res = await trans(postL(this.apis.PAGEALLPARTICIPATE, param), { loading })
  239. return res.data
  240. },
  241. async materialList() {
  242. const res = await trans(get(this.apis.MATERIALLIST))
  243. return res
  244. },
  245. async materialSubmit(materialId) {
  246. let res = ''
  247. if (materialId === 0) {
  248. res = await trans(getL(this.apis.MATERIALSUBMIT))
  249. } else {
  250. res = await trans(getL(this.apis.MATERIALSUBMIT, { materialId }))
  251. }
  252. return res
  253. },
  254. async expectedMoney() {
  255. const res = await trans(getL(this.apis.EXPECTEDMONEY))
  256. return res
  257. },
  258. async carveUpMoney() {
  259. const res = await trans(getL(this.apis.CARVEUPMONEY))
  260. return res
  261. },
  262. async luckPoolCoin(poolId) {
  263. const res = await trans(getL(this.apis.LUCKPOOLCOIN, poolId))
  264. return res
  265. },
  266. async lucknumList(roomId) {
  267. const res = await trans(getL(this.apis.LUCKNUMLIST + '?roomId=' + roomId))
  268. return res
  269. },
  270. async getRoomType() {
  271. const res = await trans(getL(SERVICE_URL + '/api/luckRoom/roomType'))
  272. return res.data
  273. }
  274. }