作者 潘浩文
1 个管道 的构建 通过 耗费 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 麦夫子首页渲染