fix: Enter key at bet_status=1 now calls endBet() instead of silently ignoring

When endBet fails on server, client stays stuck at status=1 where Enter
key did nothing. Dealer had to void the round to recover. Now Enter at
status=1 triggers endBet(), allowing manual recovery without voiding.
This commit is contained in:
testadmin
2026-05-18 21:06:07 +08:00
parent cd149d5478
commit f3fb7628ab
8 changed files with 16 additions and 0 deletions
@@ -959,6 +959,8 @@ $(function(){
}else{
layer.msg("请稍等!");
}
}else if (numberTabStatus == 1) {
endBet();
}else if (numberTabStatus == 2) {
opening();
}