diff --git a/Application/Mobile/Controller/CommonController.class.php b/Application/Mobile/Controller/CommonController.class.php index 2a7b42f8d..a3a8596c2 100644 --- a/Application/Mobile/Controller/CommonController.class.php +++ b/Application/Mobile/Controller/CommonController.class.php @@ -6,6 +6,7 @@ use User\Api\SuserApi; use Think\Log; use Base\Service\ApplyService; use Base\Tool\TaskClient; +use Base\Facade\Request; class CommonController extends BaseController { const USER_NOT_ILLEGAL = -1; //用户名不合法 @@ -208,6 +209,8 @@ class CommonController extends BaseController { } } + + $data = [ 'account' => $account, 'password' => think_ucenter_md5($password, UC_AUTH_KEY), @@ -222,8 +225,14 @@ class CommonController extends BaseController { 'parent_name' => get_parent_name($promote_id), 'register_time' => time(), 'check_time' => time(), - ]; + + if (Request::isIOS()) { + $data['device_type'] = 2; + } elseif (Request::isAndroid()) { + $data['device_type'] = 1; + } + if ($game_id) {//关联游戏 $game = M('game', 'tab_')->where(['id' => $game_id])->find(); if ($game) { diff --git a/Application/Mobile/Controller/SsgController.class.php b/Application/Mobile/Controller/SsgController.class.php index af2ceb3eb..88667005e 100644 --- a/Application/Mobile/Controller/SsgController.class.php +++ b/Application/Mobile/Controller/SsgController.class.php @@ -7,6 +7,7 @@ use Base\Tool\TaskClient; use Think\Log; use Base\Service\GameService; use Base\Service\PackageDownloadLogService; +use Base\Facade\Request; class SsgController extends BaseController { const USER_NOT_ILLEGAL = -1; //用户名不合法 @@ -293,8 +294,14 @@ class SsgController extends BaseController { 'parent_name'=>get_parent_name($promote_id), 'register_time'=>time(), 'check_time' => time(), - ); + + if (Request::isIOS()) { + $data['device_type'] = 2; + } elseif (Request::isAndroid()) { + $data['device_type'] = 1; + } + if ($game_id) {//关联游戏 $game = M('game', 'tab_')->where(['id' => $game_id])->find(); if ($game) {