import { post } from '@/utils/request'; /** * 抽奖相关接口集合 * 所有接口均为post请求,host参数已按原逻辑保留 */ export const drawApi = { /** 中奖轮播图 */ winningRotationList: (params = {}) => post('/web/activity/custom/deposit/raffle/popup/custom/list', params, 'Host80'), /** 查询余额 */ walletbalance: (params = {}) => post('/custom/get/balance', params, 'Host80'), /** 查询处理中出金金额 */ pendingWithdrawAmount: (params = {}) => post('/withdraw/amount/pending', params, 'Host04'), /** 抽奖 */ customActivityRaffleRaffle: (params = {}) => post('/custom/activity/deposit/raffle/custom/raffle', params, 'Host80'), /** 查询未过期抽奖次数 */ customActivityRaffleRaffleNumber: (params = {}) => post('/custom/activity/deposit/raffle/custom/number/record/search/not/expire', params, 'Host80'), /** 首页中奖轮播图 */ winningRotationNewsletterList: (params = {}) => post('/web/activity/custom/deposit/raffle/popup/custom/newsletter/list', params, 'Host80'), };