|
@@ -300,9 +300,9 @@ class User extends Api
|
|
|
if (!Validate::regex($mobile, "^1\d{10}$")) {
|
|
|
$this->error(__('Mobile is incorrect'));
|
|
|
}
|
|
|
-// if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
|
|
|
-// $this->error(__('Captcha is incorrect'));
|
|
|
-// }
|
|
|
+ if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
|
|
|
+ $this->error(__('Captcha is incorrect'));
|
|
|
+ }
|
|
|
$user = \app\common\model\User::getByMobile($mobile);
|
|
|
$wx_userinfo = (new \app\api\controller\Common())->getUserinfo($code);
|
|
|
|