作者 郭盛
1 个管道 的构建 通过 耗费 2 秒

修改用户注册手机号加积分

@@ -119,6 +119,21 @@ class Userinfo extends Api @@ -119,6 +119,21 @@ class Userinfo extends Api
119 if(empty($mobile)){ 119 if(empty($mobile)){
120 $this->error('缺少必要参数'); 120 $this->error('缺少必要参数');
121 } 121 }
  122 + $phone = Db::name('user')->where('id',$user_id)->find();
  123 + $score = $phone['score'] + 2;
  124 + if(empty($phone['mobile'])){
  125 + $data = Db::name('user')
  126 + ->where('id',$user_id)
  127 + ->update(['mobile'=>$mobile]);
  128 + Db::name('user')
  129 + ->where('id',$user_id)
  130 + ->update(['score'=>$score]);
  131 + if(empty($data)){
  132 + $this->error('sql运行失败');
  133 + }else{
  134 + $this->success('修改成功');
  135 + }
  136 + }
122 $data = Db::name('user') 137 $data = Db::name('user')
123 ->where('id',$user_id) 138 ->where('id',$user_id)
124 ->update(['mobile'=>$mobile]); 139 ->update(['mobile'=>$mobile]);