diff --git a/application/project/controller/Login.php b/application/project/controller/Login.php index fa0dd58..e041474 100644 --- a/application/project/controller/Login.php +++ b/application/project/controller/Login.php @@ -84,6 +84,8 @@ class Login extends BasicApi // } $member = Member::where(['mobile' => $mobile])->order('id asc')->find(); } else { + !$data['password'] && $this->error('登录密码不能为空!'); + !$data['account'] && $this->error('登录账号不能为空!'); $member = Member::where(['account' => $data['account']])->whereOr(['email' => $data['account']])->order('id asc')->find(); } empty($member) && $this->error('账号或密码错误', 201);