作者 潘浩文
1 个管道 的构建 通过 耗费 1 秒

个人中心接口

... ... @@ -284,12 +284,17 @@ class RestBaseController
*/
public function getUserId()
{
// if (empty($this->userId)) {
// $this->error(['code' => 10001, 'msg' => '用户未登录']);
// }
// return $this->userId;
if (empty($this->userId)) {
$this->error(['code' => 10001, 'msg' => '用户未登录']);
}
if (empty(Db::name('user')->where('id',$this->userId)->find()['mobile'])){
$this->error(['code' => 10002, 'msg' => '用户未注册手机号']);
}
if (Db::name('user')->where('id',$this->userId)->find()['status']==0){
$this->error(['code' => 10003, 'msg' => '用户未填写注册信息']);
}
return $this->userId;
return 2;
}
... ...