diff --git a/src/views/Activities/LuckyDollars/Season3/index.vue b/src/views/Activities/LuckyDollars/Season3/index.vue
index 3340b0e..ff0c9cb 100644
--- a/src/views/Activities/LuckyDollars/Season3/index.vue
+++ b/src/views/Activities/LuckyDollars/Season3/index.vue
@@ -101,6 +101,15 @@
:imgUrl="imageUrl('overallRankingBg')"
:contentStyle="`inset: 15vw 4vw 5vw;flex-direction: column;`"
>
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
![]()
+
@@ -1813,12 +1856,22 @@ const Second = ref(0)
let timer = null
// 弹窗展示
-const helpShow = ref(false) // 帮助
+const rankingHelpShow = ref(false) // 排行榜帮助
+const top3HelpShow = ref(false) // 总榜前三帮助
+const withdrawalHelpShow = ref(false) // 帮助
const resultShow = ref(false) // 抽奖结果
const historyShow = ref(false) // 历史
const topRewardShow = ref(false) // 前三名奖励展示
+
const maskLayerShow = computed(() => {
- return helpShow.value || resultShow.value || historyShow.value || topRewardShow.value
+ return (
+ rankingHelpShow.value ||
+ top3HelpShow.value ||
+ withdrawalHelpShow.value ||
+ resultShow.value ||
+ historyShow.value ||
+ topRewardShow.value
+ )
})
// 模块切换展示
@@ -2127,12 +2180,18 @@ const exchangeCoinBt = async () => {
const openPopup = (type) => {
closedPopup(false) //先关闭其他弹窗,不清除抽奖结果
switch (type) {
+ case 'rankingHelp':
+ rankingHelpShow.value = true
+ break
+ case 'top3Help':
+ top3HelpShow.value = true
+ break
+ case 'withdrawalHelp':
+ withdrawalHelpShow.value = true
+ break
case 'result':
resultShow.value = true
break
- case 'help':
- helpShow.value = true
- break
case 'history':
historyShow.value = true
break
@@ -2146,8 +2205,10 @@ const openPopup = (type) => {
// 关闭弹窗
const closedPopup = (clear = true) => {
+ rankingHelpShow.value = false
+ top3HelpShow.value = false
+ withdrawalHelpShow.value = false
resultShow.value = false
- helpShow.value = false
historyShow.value = false
topRewardShow.value = false
if (clear) {