正在显示
1 个修改的文件
包含
8 行增加
和
0 行删除
@@ -9,6 +9,14 @@ use api\portal\service\ParamService; | @@ -9,6 +9,14 @@ use api\portal\service\ParamService; | ||
9 | */ | 9 | */ |
10 | class SignController extends RestBaseController | 10 | class SignController extends RestBaseController |
11 | { | 11 | { |
12 | + public function _initialize(){ | ||
13 | + if (empty(Db::name('user')->where('id',$this->getUserId())->find()['mobile'])){ | ||
14 | + $this->error(['code' => 10002, 'msg' => '用户未注册手机号']); | ||
15 | + } | ||
16 | + if (Db::name('user')->where('id',$this->getUserId())->find()['user_status']==0){ | ||
17 | + $this->error(['code' => 10003, 'msg' => '用户未填写注册信息']); | ||
18 | + } | ||
19 | + } | ||
12 | /** | 20 | /** |
13 | * @title 首页接口 | 21 | * @title 首页接口 |
14 | * @description 麦夫子首页渲染 | 22 | * @description 麦夫子首页渲染 |
-
请 注册 或 登录 后发表评论