From c270ef93540697dc1f70324374931349febbdad2 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Tue, 26 May 2026 18:21:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=B8=B8=E6=88=8F=E7=8E=8B=E6=B4=BB?= =?UTF-8?q?=E5=8A=A8):=20=E9=9D=9E=E9=98=BF=E8=AF=AD=E5=8C=BA=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E4=B8=8D=E5=90=8C=E7=9A=84=E5=A5=96=E5=8A=B1=E6=94=BF?= =?UTF-8?q?=E7=AD=96=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Ranking/GamesKing/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Ranking/GamesKing/index.vue b/src/views/Ranking/GamesKing/index.vue index 3b89ca9..fe34442 100644 --- a/src/views/Ranking/GamesKing/index.vue +++ b/src/views/Ranking/GamesKing/index.vue @@ -1025,11 +1025,11 @@ const getImgName = (filename) => { } const userRegion = ref(null) -const isNotArabicRegion = computed(() => { +const isNotArabicUserRegion = computed(() => { return Boolean(userRegion.value?.regionCode && userRegion.value.regionCode !== 'AR') }) const getRegionImgName = (defaultFilename, notArabicFilename) => { - return getImgName(isNotArabicRegion.value ? notArabicFilename : defaultFilename) + return getImgName(isNotArabicUserRegion.value ? notArabicFilename : defaultFilename) } const dailyPopUpImageName = computed(() => { return getRegionImgName('dailyPopUp_20260520', 'dailyPopUp_NOT_AR')