123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- import { post, get, postL, getL } from '@/utils/http'
- import { trans } from './base'
- import { SERVICE_URL } from '@/utils/config'
- export default {
- apis: {
- LIST: SERVICE_URL + '/api/luckRoom',
- DETAIL: SERVICE_URL + '/api/luckRoom/detail',
- JOIN: SERVICE_URL + '/api/luckRoom/participate',
- // RECORD: SERVICE_URL + '/api/luckRoom/participateRecord',
- RECORD: SERVICE_URL + '/api/luckRoom/participateRecordMy',
- LIST_CREATE: SERVICE_URL + '/api/luckRoom/myCreate',
- CREATE: SERVICE_URL + '/api/luckRoom/create',
- ROOM_AUDIT_RECORD: SERVICE_URL + '/api/luckRoom/roomParticipateRecord',
- ROOM_AUDIT_PASS: SERVICE_URL + '/api/luckRoom/auditPass',
- ROOM_AUDIT_UNPASS: SERVICE_URL + '/api/luckRoom/auditUnpass',
- REEL_DETAIL: SERVICE_URL + '/api/luckWheel/detail',
- REEL_JOIN: SERVICE_URL + '/api/luckWheel/participate',
- REEL_RECORD: SERVICE_URL + '/api/luckWheel/listAllParticipate',
- TOPIC_LIST: SERVICE_URL + '/api/vote/listTopic',
- TOPIC_JOIN: SERVICE_URL + '/api/vote/participate',
- TOPIC_CREATE: SERVICE_URL + '/api/vote/createTopic',
- ACTIVITY: SERVICE_URL + '/api/activity/newbieGiftBag/info',
- ACTIVITY_JOIN: SERVICE_URL + '/api/activity/participate',
- WISH_LIST: SERVICE_URL + '/api/substituteGoods/list',
- WISH_PREVIEW: SERVICE_URL + '/api/substituteOrder/preSubmit',
- WISH_SUBMIT: SERVICE_URL + '/api/substituteOrder/submit',
- ACTIVITY_TAB: SERVICE_URL + '/api/activity/doubleEgg/info',
- ACTIVITY_TAB_DETAIL: SERVICE_URL + '/api/activity/doubleEgg/detail',
- POPULARIZE: SERVICE_URL + '/api/activity/magicCall/detail',
- POPULARIZE_RANK: SERVICE_URL + '/api/activity/magicCall/listBillboard',
- POPULARIZE_PEOPLE: SERVICE_URL + '/api/activity/magicCall/pagePromotee',
- SPRINT: SERVICE_URL + '/api/activity/magicSprint/detail',
- SPRINT_RANK: SERVICE_URL + '/api/activity/magicSprint/listBillboard',
- RED_PACKET_RAIN_INFO: SERVICE_URL + '/api/activity/redPacketRain/info',
- RED_PACKET_RAIN: SERVICE_URL + '/api/activity/redPacketRain/detail',
- RED_PACKET_RAIN_JOIN: SERVICE_URL + '/api/activity/redPacketRain/participate',
- FIREWORKS: SERVICE_URL + '/api/activity/magicFireworks/detail',
- RICH: SERVICE_URL + '/api/activity/richman/detail',
- RICH_ROLL: SERVICE_URL + '/api/activity/richman/roll',
- RICH_RANK: SERVICE_URL + '/api/activity/richman/listBillboard',
- WINNINGRECORD: SERVICE_URL + '/api/luckRoom/winningTheLotteryRecord',
- DOLLDETAIL: SERVICE_URL + '/api/activity/dollMachine/detail',
- PARTICIPATE: SERVICE_URL + '/api/activity/dollMachine/participate',
- PAGEALLPARTICIPATE: SERVICE_URL + '/api/activity/dollMachine/pageAllParticipate',
- MATERIALLIST: SERVICE_URL + '/api/activity/material/list',
- MATERIALSUBMIT: SERVICE_URL + '/api/activity/material/submit',
- EXPECTEDMONEY: SERVICE_URL + '/api/activity/material/expectedMoney',
- CARVEUPMONEY: SERVICE_URL + '/api/activity/material/carveUpMoney',
- LUCKPOOLCOIN: SERVICE_URL + '/api/luckPool/luckPoolCoin',
- LUCKNUMLIST: SERVICE_URL + '/api/luckRoom/mySign'
- },
- async list(current, size, keyword, type, loading = false) {
- const res = await trans(post(this.apis.LIST, { current, size, keyword, type }, { loading }))
- return res.data
- },
- async detail(params, loading = false) {
- const res = await trans(get(this.apis.DETAIL, { ...params }, { loading }))
- return res.data
- },
- async join(roomId, password = '', shareId) {
- const res = await trans(getL(this.apis.JOIN, { roomId, password, shareId }))
- return res.success
- },
- async join2(roomId) {
- const res = await trans(get(this.apis.JOIN, { roomId }))
- return res
- },
- async record(current, size, loading = false) {
- const res = await trans(post(this.apis.RECORD, { current, size }, { loading }))
- return res.data
- },
- async createList(current, size, loading = false) {
- const res = await trans(post(this.apis.LIST_CREATE, { current, size }, { loading }))
- return res.data
- },
- async create(param) {
- const res = await trans(postL(this.apis.CREATE, param))
- return res.success
- },
- async roomAuditRecord(current, size, roomId, auditStatus, loading = false) {
- const res = await trans(
- post(this.apis.ROOM_AUDIT_RECORD, { current, size, roomId, auditStatus }, { loading })
- )
- return res.data
- },
- async roomAuditPass(id) {
- const res = await trans(postL(this.apis.ROOM_AUDIT_PASS, { id }))
- return res.success
- },
- async roomAuditUnPass(id) {
- const res = await trans(postL(this.apis.ROOM_AUDIT_UNPASS, { id }))
- return res.success
- },
- async reelDetail(wheelId) {
- const res = await trans(get(this.apis.REEL_DETAIL, { wheelId }))
- return res.data
- },
- async reelJoin(wheelId) {
- const res = await trans(post(this.apis.REEL_JOIN, { wheelId }))
- return res
- },
- async reelList(wheelId, current, size, loading = false) {
- const res = await trans(
- post(this.apis.REEL_RECORD, { wheelId, current, size }, { loading })
- )
- return res.data
- },
- async topics(current, size, loading = false) {
- const res = await trans(post(this.apis.TOPIC_LIST, { current, size }, { loading }))
- return res.data
- },
- async topicJoin(topicId, answer) {
- const res = await trans(postL(this.apis.TOPIC_JOIN, { topicId, answer }))
- return res.success
- },
- async topicCreate(question, answerSet) {
- const res = await trans(postL(this.apis.TOPIC_CREATE, { question, answerSet }))
- return res.success
- },
- async activity() {
- const res = await trans(get(this.apis.ACTIVITY))
- return res.success && res.data
- },
- async joinActivity(activityId, loading) {
- const res = await trans(post(this.apis.ACTIVITY_JOIN, { activityId }, { loading }))
- return res.success
- },
- async wishList() {
- const res = await trans(post(this.apis.WISH_LIST))
- return res.data
- },
- async wishPreview(substituteGoodsId, inventoryIds) {
- const res = await trans(postL(this.apis.WISH_PREVIEW, { substituteGoodsId, inventoryIds }))
- return res.data
- },
- async wishSubmit(substituteGoodsId, inventoryIds) {
- const res = await trans(postL(this.apis.WISH_SUBMIT, { substituteGoodsId, inventoryIds }))
- return res.success
- },
- async activityTab() {
- const res = await trans(get(this.apis.ACTIVITY_TAB))
- return res.success ? res.data : null
- },
- async activityTabDetail() {
- const res = await trans(get(this.apis.ACTIVITY_TAB_DETAIL))
- return res.success ? res.data : null
- },
- async popularize() {
- const res = await trans(get(this.apis.POPULARIZE))
- if (res.success && res.data && res.data.prizeList) {
- return res.data.prizeList
- }
- return null
- },
- async popularizeRank() {
- const res = await trans(get(this.apis.POPULARIZE_RANK))
- if (res.success && res.data) {
- return res.data
- }
- return null
- },
- async popularizePeoples(current, size, promoter, loading = false) {
- const res = await trans(
- post(this.apis.POPULARIZE_PEOPLE, { current, size, promoter }, { loading })
- )
- return res.data
- },
- async sprint() {
- const res = await trans(get(this.apis.SPRINT))
- if (res.success && res.data && res.data.prizeList) {
- return res.data.prizeList
- }
- return null
- },
- async sprintRank() {
- const res = await trans(get(this.apis.SPRINT_RANK))
- if (res.success && res.data) {
- return res.data
- }
- return null
- },
- async redPacketRainInfo() {
- const res = await trans(get(this.apis.RED_PACKET_RAIN_INFO))
- if (res.success) {
- return res.data
- }
- return null
- },
- async redPacketRain(loading) {
- const res = await trans(get(this.apis.RED_PACKET_RAIN, null, { loading }))
- if (res.success) {
- return res.data
- }
- return null
- },
- async redPacketRainJoin() {
- const res = await trans(postL(this.apis.RED_PACKET_RAIN_JOIN))
- if (res.success) {
- return res.data
- }
- return null
- },
- async fireworks(loading = true) {
- const res = await trans(get(this.apis.FIREWORKS, null, { loading }))
- if (res.success) {
- return res.data
- }
- return null
- },
- async rich(loading) {
- const res = await trans(get(this.apis.RICH, null, { loading }))
- return res.success ? res.data : null
- },
- async richRoll() {
- const res = await trans(post(this.apis.RICH_ROLL, null, { showMsg: true }))
- return res.success ? res.data : null
- },
- async richRank() {
- const res = await trans(get(this.apis.RICH_RANK))
- if (res.success && res.data) {
- return res.data
- }
- return null
- },
- async winningTheLotteryRecord(roomId) {
- const res = await trans(get(this.apis.WINNINGRECORD, { roomId }))
- return res.data
- },
- async catchDollDetail() {
- const res = await trans(get(this.apis.DOLLDETAIL))
- return res
- },
- async dollLottery(quantity) {
- const res = await trans(post(this.apis.PARTICIPATE, quantity))
- return res
- },
- async prizeReslut(param, loading = false) {
- const res = await trans(postL(this.apis.PAGEALLPARTICIPATE, param), { loading })
- return res.data
- },
- async materialList() {
- const res = await trans(get(this.apis.MATERIALLIST))
- return res
- },
- async materialSubmit(materialId) {
- let res = ''
- if (materialId === 0) {
- res = await trans(getL(this.apis.MATERIALSUBMIT))
- } else {
- res = await trans(getL(this.apis.MATERIALSUBMIT, { materialId }))
- }
- return res
- },
- async expectedMoney() {
- const res = await trans(getL(this.apis.EXPECTEDMONEY))
- return res
- },
- async carveUpMoney() {
- const res = await trans(getL(this.apis.CARVEUPMONEY))
- return res
- },
- async luckPoolCoin(poolId) {
- const res = await trans(getL(this.apis.LUCKPOOLCOIN, poolId))
- return res
- },
- async lucknumList(roomId) {
- const res = await trans(getL(this.apis.LUCKNUMLIST + '?roomId=' + roomId))
- return res
- },
- async getRoomType() {
- const res = await trans(getL(SERVICE_URL + '/api/luckRoom/roomType'))
- return res.data
- }
- }
|