post()->goCheck('getMobileByMnp'); $params['user_id'] = $this->userId; $result = UserLogic::getMobileByMnp($params); if ($result === false) { return $this->fail(UserLogic::getError()); } $data = UserLogic::info($this->userId); return $this->success('绑定成功', $data, 1, 1); } public function info() { return $this->success('success', UserLogic::info($this->userId)); } }