diff --git a/resources/views/chat/partials/baccarat-panel.blade.php b/resources/views/chat/partials/baccarat-panel.blade.php index 1e7a968..d9cfda1 100644 --- a/resources/views/chat/partials/baccarat-panel.blade.php +++ b/resources/views/chat/partials/baccarat-panel.blade.php @@ -200,37 +200,84 @@ {{-- 结算阶段 --}}
- {{-- 骰子点数展示 --}} -
+ + {{-- 骰子展示(数字方块,跨平台兼容) --}} +
-
-
-
+ + {{-- 结果标签 --}} +
+
+
- {{-- 个人结果 --}} -
-
+ {{-- 个人结果卡片 --}} +
+ {{-- 中奖 --}} +
+
+
🎉
+
恭喜中奖!
+
+
+
+
-
+ + {{-- 未中奖 --}} +
+
+
😔
+
本局未中奖 +
+
+ 你押了 + + · + 开了 + +
+
+
+ + {{-- 未下注但看结果 --}} +
+ 本局未参与下注 +
@@ -335,6 +382,7 @@ // 结算结果 settledDice: [], settledTotal: 0, + settledResult: '', resultLabel: '', diceEmoji: '', myWon: false, @@ -443,8 +491,8 @@ clearInterval(this.countdownTimer); this.settledDice = data.dice; this.settledTotal = data.total_points; + this.settledResult = data.result; this.resultLabel = data.result_label; - this.diceEmoji = data.dice.map(d => ['⚀', '⚁', '⚂', '⚃', '⚄', '⚅'][d - 1]).join(''); this.phase = 'settled'; this.show = true;