fetch(); } /** * 验证登录 * @return mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function verify() { list($account,$pwd,$verify) = Util::postMore(['account','pwd','verify'],null,true); if (empty($account) || empty($pwd)) return app("json")->fail("账号、密码和验证码不能为空!"); // 验证码验证 if (!captcha_check($verify)) return app("json")->fail("验证码不正确!"); // 验证登录 if (!adminModel::login($account,$pwd)) return app("json")->fail("登录失败!"); return app("json")->success("登录成功!"); } public function wechatLogin() { } /** * 注册 * @return string * @throws \Exception */ public function register() { return $this->fetch(); } /** * 忘记密码 * @return string * @throws \Exception */ public function forget() { return $this->fetch(); } /** * 退出登陆 * @return mixed * @throws \Exception */ public function logout() { return Admin::clearLoginInfo() ? $this->successfulNotice("操作成功","/admin/login/login") : $this->failedNotice("操作失败","/admin/index/index"); } /** * 验证码 * @return \think\Response */ public function captcha() { ob_clean(); return captcha(); } }