From 41ab104f83751fba0e2dc64e809a2cdef34cfe57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=96=B9=E6=88=90?= Date: Sun, 4 Jan 2026 19:19:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=E6=9C=AC=E5=9C=B0?= =?UTF-8?q?=E6=B8=B8=E6=88=8F=E7=8A=B6=E6=80=81=E4=BB=A5=E4=BF=9D=E6=8C=81?= =?UTF-8?q?=E4=B8=80=E8=87=B4=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages-game/game/minesweeper/play.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pages-game/game/minesweeper/play.vue b/pages-game/game/minesweeper/play.vue index f4f813d..3cdff4c 100644 --- a/pages-game/game/minesweeper/play.vue +++ b/pages-game/game/minesweeper/play.vue @@ -706,6 +706,9 @@ export default { const remaining = Math.max(0, limit - elapsed); this.resetTurnTimer(remaining, limit); } + + // 关键修复:必须更新本地游戏状态 + this.gameState = data; } else if (opCode === 5) { this.handleEvent(data); } else if (opCode === 6) {