|
@@ -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) {
|