style(斋月活动、春节活动): 样式调整
This commit is contained in:
parent
294b4f7bc5
commit
28e27f290c
@ -1602,7 +1602,7 @@
|
||||
|
||||
<!-- 名称 -->
|
||||
<div style="flex: 1; min-width: 0; display: flex; flex-direction: column">
|
||||
<div style="display: flex">
|
||||
<div style="display: flex; min-width: 0">
|
||||
<div
|
||||
style="
|
||||
color: #fff;
|
||||
@ -2474,6 +2474,7 @@ const sweepstakes = async (consecutive = 1) => {
|
||||
getTotalDrawCount() //刷新累计抽奖次数
|
||||
getConfigsBadgeInfo() //刷新累计抽奖-徽章信息
|
||||
getTickets() //重新获取拥有的抽奖券
|
||||
getDrawableAmount() //刷新可提现金额
|
||||
|
||||
result.value = [resOnceDraw.body] // 中奖结果赋值
|
||||
|
||||
@ -2493,6 +2494,7 @@ const sweepstakes = async (consecutive = 1) => {
|
||||
getTotalDrawCount() //刷新累计抽奖次数
|
||||
getConfigsBadgeInfo() //刷新累计抽奖-徽章信息
|
||||
getTickets() //重新获取拥有的抽奖券
|
||||
getDrawableAmount() //刷新可提现金额
|
||||
|
||||
result.value = resMultiDraw.body.results // 中奖结果赋值
|
||||
|
||||
|
||||
@ -72,7 +72,7 @@
|
||||
<itemCenter
|
||||
style="width: 10vw"
|
||||
:imgUrl="imageUrl('rankingNumBg')"
|
||||
:contentStyle="``"
|
||||
:contentStyle="`bottom: 0.5vw;`"
|
||||
@click="viewUserInfo(listItem.userId)"
|
||||
>
|
||||
<div style="color: #ffe601; font-weight: 700">{{ listItem?.rank }}</div>
|
||||
@ -117,18 +117,24 @@
|
||||
|
||||
<!-- 名称、id -->
|
||||
<div style="flex: 1; min-width: 0; display: flex; flex-direction: column">
|
||||
<div
|
||||
style="
|
||||
color: #fff;
|
||||
font-weight: 860;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
"
|
||||
class="UserNickname"
|
||||
>
|
||||
{{ listItem?.userName }}
|
||||
<!-- 名称 -->
|
||||
<div style="display: flex; min-width: 0">
|
||||
<div
|
||||
style="
|
||||
color: #fff;
|
||||
font-weight: 860;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
direction: ltr;
|
||||
"
|
||||
class="UserNickname"
|
||||
>
|
||||
{{ listItem?.userName }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- id -->
|
||||
<div style="color: #fff; font-weight: 590" class="UserNickname">
|
||||
{{ $t('user_id_prefix') }} {{ listItem?.specialAccount || listItem?.account }}
|
||||
</div>
|
||||
|
||||
@ -964,6 +964,7 @@ const sweepstakes = async (consecutive = 1) => {
|
||||
) //转盘第几位停下
|
||||
console.log('index:', index)
|
||||
getMyLotteryTicketCount() // 更新抽奖券数量
|
||||
getDrawableAmount() //刷新可提现金额
|
||||
await startLottery(index)
|
||||
}
|
||||
}
|
||||
@ -980,6 +981,7 @@ const sweepstakes = async (consecutive = 1) => {
|
||||
console.log('index:', index)
|
||||
|
||||
getMyLotteryTicketCount() // 更新抽奖券数量
|
||||
getDrawableAmount() //刷新可提现金额
|
||||
await startLottery(index)
|
||||
}
|
||||
}
|
||||
|
||||
@ -56,7 +56,11 @@
|
||||
height: nameValueHeight,
|
||||
}"
|
||||
>
|
||||
<div style="font-weight: 700" class="showText" :class="isTopOne ? 'top1Text' : 'text'">
|
||||
<div
|
||||
style="direction: ltr; font-weight: 700"
|
||||
class="showText"
|
||||
:class="isTopOne ? 'top1Text' : 'text'"
|
||||
>
|
||||
{{ name }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -2,6 +2,20 @@
|
||||
<div class="fullPage">
|
||||
<!-- 预加载状态 -->
|
||||
<div v-show="isLoading" class="loading-container">
|
||||
<!-- 页面背景 -->
|
||||
<BackgroundLayer
|
||||
v-show="!RankingShow"
|
||||
:backgroundImages="[
|
||||
imageUrl('bg1'),
|
||||
imageUrl('bg2'),
|
||||
imageUrl('bg3'),
|
||||
imageUrl('bg4'),
|
||||
imageUrl('bg5'),
|
||||
imageUrl('bg6'),
|
||||
]"
|
||||
/>
|
||||
|
||||
<!-- 加载动画 -->
|
||||
<div class="loading-spinner"></div>
|
||||
<p>{{ $t('loading') }}...</p>
|
||||
</div>
|
||||
@ -252,7 +266,7 @@
|
||||
<itemCenter
|
||||
style="width: 10vw"
|
||||
:imgUrl="imageUrl('rankingNumBg')"
|
||||
:contentStyle="``"
|
||||
:contentStyle="`bottom: 0.5vw;`"
|
||||
@click="viewUserInfo(listItem.userId)"
|
||||
>
|
||||
<div style="color: #ffe601; font-weight: 700">{{ myRanking?.rank || 999 }}</div>
|
||||
@ -284,17 +298,20 @@
|
||||
<!-- 名称、id -->
|
||||
<div style="flex: 1; min-width: 0; display: flex; flex-direction: column">
|
||||
<!-- 名称 -->
|
||||
<div
|
||||
style="
|
||||
color: #fff;
|
||||
font-weight: 860;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
"
|
||||
class="UserNickname"
|
||||
>
|
||||
{{ myRanking?.userName }}
|
||||
<div style="display: flex; min-width: 0">
|
||||
<div
|
||||
style="
|
||||
color: #fff;
|
||||
font-weight: 860;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
direction: ltr;
|
||||
"
|
||||
class="UserNickname"
|
||||
>
|
||||
{{ myRanking?.userName }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ID -->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user