post()->goCheck('register'); $result = LoginLogic::register($params); if (false === $result) { return $this->fail(LoginLogic::getError()); } return $this->data($result); } /** * @notes 账号密码/手机号密码/手机号验证码登录 * @return \think\response\Json * @author 段誉 * @date 2022/9/16 10:42 */ public function account() { $params = (new LoginAccountValidate())->post()->goCheck(); $result = LoginLogic::login($params); if (false === $result) { return $this->fail(LoginLogic::getError()); } return $this->data($result); } /** * @notes 退出登录 * @return \think\response\Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2022/9/16 10:42 */ public function logout() { LoginLogic::logout($this->userInfo); return $this->success(); } /** * @notes 更新用户头像昵称 * @return \think\response\Json * @author 段誉 * @date 2023/2/22 11:15 */ public function updateUser() { $params = (new WechatLoginValidate())->post()->goCheck("updateUser"); LoginLogic::updateUser($params, $this->userId); return $this->success('操作成功', [], 1, 1); } }