diff --git a/src/components/HomePage.vue b/src/components/HomePage.vue
index c170612..9cfd13a 100644
--- a/src/components/HomePage.vue
+++ b/src/components/HomePage.vue
@@ -353,9 +353,9 @@ const gameSwiperShow = ref(false);
const navigateGamePage = async () => {
const result = await Request('game/info', { refresh_official: false, refresh_cap_scan: false }, "GET")
if (result?.res?.status === 200) {
- globalStore.draw_chances = result.json.draw_chances
+ globalStore.game_chances = result.json.game_chances
globalStore.completed_games_today = result.json.completed_games_today || [];
- if (globalStore.draw_chances <= 0) {
+ if (globalStore.game_chances <= 0) {
return weui.alert("还没有探索机会,快去参加活动吧")
} else {
gameSwiperShow.value = true;
@@ -468,7 +468,7 @@ const handleAddress = (id) => {
-