|
@@ -75,6 +75,10 @@ public class AppGameBettingController extends BaseController{
|
|
return error("游戏倒计时不存在,无法下单。");
|
|
return error("游戏倒计时不存在,无法下单。");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if(!appGame.getGameTime().contains(":")){
|
|
|
|
+ return error("游戏已封盘,无法下单。");
|
|
|
|
+ }
|
|
|
|
+
|
|
String[] timeArry = appGame.getGameTime().substring(0, 4).split(":");
|
|
String[] timeArry = appGame.getGameTime().substring(0, 4).split(":");
|
|
int m = Integer.parseInt(timeArry[1]);
|
|
int m = Integer.parseInt(timeArry[1]);
|
|
|
|
|