quguofeng 1 рік тому
батько
коміт
6edb66f83a
1 змінених файлів з 2 додано та 2 видалено
  1. 2 2
      application/api/controller/User.php

+ 2 - 2
application/api/controller/User.php

@@ -62,10 +62,10 @@ class User extends Api
             //如果已经有账号则直接登录
             $ret = $this->auth->direct($user->id);
         } else {
-            $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
+            $ret = $this->auth->register('植提桥用户'.substr($mobile,-4), Random::alnum(), '', $mobile, []);
         }
         if ($ret) {
-            Sms::flush($mobile, 'mobilelogin');
+            Sms::flush($mobile, 'register');
             $data = ['userinfo' => $this->auth->getUserinfo()];
             $this->success(__('Logged in successful'), $data);
         } else {