songxingwei 2 anos atrás
pai
commit
0c91b78eaa
1 arquivos alterados com 3 adições e 2 exclusões
  1. 3 2
      app/data/controller/api/Auth.php

+ 3 - 2
app/data/controller/api/Auth.php

@@ -77,8 +77,9 @@ abstract class Auth extends Controller
                 }
             }
             if($this->uuid) {
-                $user =
-                return UserAdminService::get($this->uuid, $this->type);
+                $user = UserAdminService::get($this->uuid, $this->type);
+                if (!$user['status']) $this->error('账户已被冻结!');
+                return $user;
             }
             return [];
         } catch (HttpResponseException $exception) {