From 3dcf7b19755f10189211bb5b83322bd49909b757 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 19 Mar 2026 20:07:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=BC=80=E6=96=8B=E8=8A=82):=20=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Activities/LesserBairam/index.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/Activities/LesserBairam/index.vue b/src/views/Activities/LesserBairam/index.vue index eae8905..507e8b6 100644 --- a/src/views/Activities/LesserBairam/index.vue +++ b/src/views/Activities/LesserBairam/index.vue @@ -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 }