feat(开斋节): 接口参数调整

This commit is contained in:
hzj 2026-03-19 20:07:49 +08:00
parent ac38beb44e
commit 3dcf7b1975

View File

@ -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
}