Merge pull request '优化' (#165) from feature/testing_quota_up into release

Reviewed-on: http://8.136.139.249:3000/wmtx/platform/pulls/165
master
廖金灵 4 years ago
commit e84f8c174a

@ -334,7 +334,7 @@
if(!num) { if(!num) {
return false return false
} }
var strPreg = /^\d+$/ var strPreg = /^-?[1-9]\d*$/
if(!strPreg.test(num)) { if(!strPreg.test(num)) {
return false return false
} }

@ -322,10 +322,10 @@ class TestingResourceService
throw new \Exception('该玩家账号为测试账号,无法绑定'); throw new \Exception('该玩家账号为测试账号,无法绑定');
} }
$existBind = M('testing_binding', 'tab_')->field(['id'])->where(['game_id' => $gameId, 'bind_role_id' => $bindRoleId])->find(); /* $existBind = M('testing_binding', 'tab_')->field(['id'])->where(['game_id' => $gameId, 'bind_role_id' => $bindRoleId])->find();
if ($existBind) { if ($existBind) {
throw new \Exception('该玩家角色已被绑定'); throw new \Exception('该玩家角色已被绑定');
} } */
$testExistBind = M('testing_binding', 'tab_')->field(['id'])->where(['game_id' => $gameId, 'role_id' => $testingRoleId])->find(); $testExistBind = M('testing_binding', 'tab_')->field(['id'])->where(['game_id' => $gameId, 'role_id' => $testingRoleId])->find();
if ($testExistBind) { if ($testExistBind) {

Loading…
Cancel
Save