From 20d637465c5b3a36da2455efbe487cae4e7f836e Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Wed, 27 May 2026 18:20:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=81=AE=E7=BD=A9=E5=B1=82=E5=BC=B9?= =?UTF-8?q?=E7=AA=97):=20=E9=92=88=E5=AF=B9=E9=81=AE=E7=BD=A9=E5=B1=82?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E5=92=8C=E9=A1=B5=E9=9D=A2=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E9=94=AE=E5=B1=82=E7=BA=A7=E5=86=B2=E7=AA=81=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E8=BF=9B=E8=A1=8C=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Ranking/GamesKing/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/Ranking/GamesKing/index.vue b/src/views/Ranking/GamesKing/index.vue index c139141..a7728b8 100644 --- a/src/views/Ranking/GamesKing/index.vue +++ b/src/views/Ranking/GamesKing/index.vue @@ -32,7 +32,7 @@
- @@ -1048,9 +1048,12 @@ const dailyPopUpShow = ref(false) const maskLayerShow = computed(() => { return helpShow.value || dailyPopUpShow.value }) +const pageBackHidden = computed(() => { + return maskLayerShow.value +}) const handlePageBack = () => { - if (maskLayerShow.value) return + if (pageBackHidden.value) return console.log('home back') closePage() }