feat(开斋节): 接口参数调整
This commit is contained in:
parent
ac38beb44e
commit
3dcf7b1975
@ -2629,7 +2629,7 @@ const searchPayee = () => {
|
||||
|
||||
// 前往提现页
|
||||
const goToWithdraw = () => {
|
||||
router.push({ path: '/cash-out', query: { activityId: '2033805289592926210' } })
|
||||
router.push({ path: '/cash-out', query: { activityId: '2006671533912581569' } })
|
||||
}
|
||||
|
||||
// 判断文本是否溢出(需要滚动)
|
||||
@ -2684,7 +2684,7 @@ const transfer = async () => {
|
||||
const transferData = {
|
||||
amount: selectedCoin.value.price,
|
||||
acceptUserId: selectedPayee.value?.id,
|
||||
activityId: '2033805289592926210',
|
||||
activityId: '2006671533912581569',
|
||||
}
|
||||
|
||||
try {
|
||||
@ -2719,7 +2719,7 @@ const exchangeCoinBt = async () => {
|
||||
// 构造请求参数
|
||||
const transferData = {
|
||||
amount: selectedCoin.value.price,
|
||||
activityId: '2033805289592926210',
|
||||
activityId: '2006671533912581569',
|
||||
}
|
||||
|
||||
try {
|
||||
@ -2845,7 +2845,7 @@ const sweepstakes = async (consecutive = 1) => {
|
||||
if (rollTimes.value >= consecutive) {
|
||||
isRolling.value = true
|
||||
let data = {
|
||||
activityId: '2033805289592926210',
|
||||
activityId: '2006671533912581569',
|
||||
drawCount: consecutive,
|
||||
}
|
||||
try {
|
||||
@ -2998,7 +2998,7 @@ const clearPayee = () => {
|
||||
|
||||
// 获取中奖用户列表
|
||||
const getWinners = async () => {
|
||||
const resWinners = await winnerHistory('2033805289592926210')
|
||||
const resWinners = await winnerHistory('2006671533912581569')
|
||||
if (resWinners.status && resWinners.body) {
|
||||
barrageList.value = resWinners.body
|
||||
}
|
||||
@ -3208,7 +3208,7 @@ const getTickets = async () => {
|
||||
|
||||
// 获取累计抽奖次数
|
||||
const getTotalDrawCount = async () => {
|
||||
const resTotalDrawCount = await myTotalDrawCount('2033805289592926210')
|
||||
const resTotalDrawCount = await myTotalDrawCount('2006671533912581569')
|
||||
if (resTotalDrawCount.status && resTotalDrawCount.body) {
|
||||
totalDraw.value = resTotalDrawCount.body
|
||||
}
|
||||
@ -3216,7 +3216,7 @@ const getTotalDrawCount = async () => {
|
||||
|
||||
// 可提现金额
|
||||
const getDrawableAmount = async () => {
|
||||
const resDrawableAmount = await withdrawableAmount('2033805289592926210')
|
||||
const resDrawableAmount = await withdrawableAmount('2006671533912581569')
|
||||
if (resDrawableAmount.status && resDrawableAmount.body) {
|
||||
currentAmount.value = resDrawableAmount.body
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user