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

个人中心接口

@@ -290,7 +290,7 @@ class RestBaseController @@ -290,7 +290,7 @@ class RestBaseController
290 if (empty(Db::name('user')->where('id',$this->userId)->find()['mobile'])){ 290 if (empty(Db::name('user')->where('id',$this->userId)->find()['mobile'])){
291 $this->error(['code' => 10002, 'msg' => '用户未注册手机号']); 291 $this->error(['code' => 10002, 'msg' => '用户未注册手机号']);
292 } 292 }
293 - if (Db::name('user')->where('id',$this->userId)->find()['status']==0){ 293 + if (Db::name('user')->where('id',$this->userId)->find()['user_status']==0){
294 $this->error(['code' => 10003, 'msg' => '用户未填写注册信息']); 294 $this->error(['code' => 10003, 'msg' => '用户未填写注册信息']);
295 } 295 }
296 return $this->userId; 296 return $this->userId;