|
@@ -1172,7 +1172,7 @@ class GlobalLogicController extends BaseLogicController
|
|
|
|
|
|
|
|
// 房间列表
|
|
// 房间列表
|
|
|
$rooms = DB::connection('read')->table(TableName::QPPlatformDB() . 'GameRoomInfo')
|
|
$rooms = DB::connection('read')->table(TableName::QPPlatformDB() . 'GameRoomInfo')
|
|
|
- ->whereIn('GameID', config('games.openKGame'))
|
|
|
|
|
|
|
+// ->whereIn('GameID', config('games.openKGame'))
|
|
|
->selectRaw('ServerID,ServerName')
|
|
->selectRaw('ServerID,ServerName')
|
|
|
->orderByDesc('ServerID')
|
|
->orderByDesc('ServerID')
|
|
|
->pluck('ServerName', 'ServerID')
|
|
->pluck('ServerName', 'ServerID')
|
|
@@ -1183,7 +1183,7 @@ class GlobalLogicController extends BaseLogicController
|
|
|
|
|
|
|
|
// 游戏列表
|
|
// 游戏列表
|
|
|
$games = DB::connection('read')->table(TableName::QPPlatformDB() . 'GameKindItem')
|
|
$games = DB::connection('read')->table(TableName::QPPlatformDB() . 'GameKindItem')
|
|
|
- ->whereIn('GameID', config('games.openKGame'))
|
|
|
|
|
|
|
+// ->whereIn('GameID', config('games.openKGame'))
|
|
|
->select('KindName', 'GameID')
|
|
->select('KindName', 'GameID')
|
|
|
->pluck('KindName', 'GameID')
|
|
->pluck('KindName', 'GameID')
|
|
|
->toArray();
|
|
->toArray();
|