feat(game): 添加游戏桌面组件的警告提示和动画效果

- 在动物游戏中添加余额不足和选择限制的警告提示
- 为警告状态添加震动动画和视觉反馈效果
- 实现倒计时警告状态的动画和样式变化
- 添加胜利和失败状态的历史记录显示
- 为筹码和操作按钮添加禁用状态的视觉效果
- 实现用户信息和流程按钮的交互功能
- 添加自动设置弹窗的打开功能
- 优化游戏阶段切换时的选择清空逻辑
- 添加剩余时间变化的回调函数支持
- 为历史记录添加中奖状态的颜色标识
This commit is contained in:
JiaJun
2026-05-18 18:01:33 +08:00
parent 85b4d9481f
commit 6ac42cf35e
15 changed files with 1125 additions and 91 deletions

View File

@@ -362,12 +362,16 @@ export default {
announcement: 'Announcement',
},
animal: {
insufficientBalanceRecharge: 'Insufficient balance, please top up',
loading: 'Loading',
selectionLimitReached: 'Selection limit exceeded',
tapToEnter: 'Tap To Enter',
getStart: 'Get Start',
},
history: {
title: 'History',
win: 'WIN',
lost: 'LOST',
orderNo: 'Order No.',
roundId: 'Round ID',
numbers: 'Bet Numbers',

View File

@@ -361,12 +361,16 @@ export default {
announcement: 'Pengumuman',
},
animal: {
insufficientBalanceRecharge: 'Saldo tidak cukup, silakan isi ulang',
loading: 'Memuat',
selectionLimitReached: 'Melebihi pilihan yang diizinkan',
tapToEnter: 'Ketuk Untuk Masuk',
getStart: 'Mulai',
},
history: {
title: 'Riwayat',
win: 'WIN',
lost: 'LOST',
orderNo: 'No. Order',
roundId: 'ID Ronde',
numbers: 'Nomor Taruhan',

View File

@@ -365,12 +365,16 @@ export default {
announcement: 'Pengumuman',
},
animal: {
insufficientBalanceRecharge: 'Baki tidak mencukupi, sila tambah nilai',
loading: 'Memuatkan',
selectionLimitReached: 'Melebihi pilihan aksara yang dibenarkan',
tapToEnter: 'Ketik Untuk Masuk',
getStart: 'Mula',
},
history: {
title: 'Sejarah',
win: 'WIN',
lost: 'LOST',
orderNo: 'No. Pesanan',
roundId: 'ID Pusingan',
numbers: 'Nombor Pertaruhan',

View File

@@ -352,12 +352,16 @@ export default {
announcement: '公告栏',
},
animal: {
insufficientBalanceRecharge: '余额不足,请充值',
loading: '加载中',
selectionLimitReached: '超过可选择字花',
tapToEnter: '点击进入',
getStart: '开始游戏',
},
history: {
title: '历史记录',
win: 'WIN',
lost: 'LOST',
orderNo: '订单号',
roundId: '期号',
numbers: '下注号码',