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() }