正在显示
1 个修改的文件
包含
10 行增加
和
5 行删除
@@ -284,12 +284,17 @@ class RestBaseController | @@ -284,12 +284,17 @@ class RestBaseController | ||
284 | */ | 284 | */ |
285 | public function getUserId() | 285 | public function getUserId() |
286 | { | 286 | { |
287 | -// if (empty($this->userId)) { | ||
288 | -// $this->error(['code' => 10001, 'msg' => '用户未登录']); | ||
289 | -// } | ||
290 | -// return $this->userId; | 287 | + if (empty($this->userId)) { |
288 | + $this->error(['code' => 10001, 'msg' => '用户未登录']); | ||
289 | + } | ||
290 | + if (empty(Db::name('user')->where('id',$this->userId)->find()['mobile'])){ | ||
291 | + $this->error(['code' => 10002, 'msg' => '用户未注册手机号']); | ||
292 | + } | ||
293 | + if (Db::name('user')->where('id',$this->userId)->find()['status']==0){ | ||
294 | + $this->error(['code' => 10003, 'msg' => '用户未填写注册信息']); | ||
295 | + } | ||
296 | + return $this->userId; | ||
291 | return 2; | 297 | return 2; |
292 | - | ||
293 | } | 298 | } |
294 | 299 | ||
295 | 300 |
-
请 注册 或 登录 后发表评论