作者 何书鹏
1 个管道 的构建 失败 耗费 4 秒

暂不验证验证码

... ... @@ -1053,6 +1053,8 @@ class Lists extends Api
$this->error(['code'=>40005,'msg'=>$validate->getError()]);
}
$code = Cache::get($param['mobile']);
//暂不验证验证码
$this->success('SUCCESS');
if($param['code'] == $code){
$this->success('SUCCESS');
}else{
... ...
... ... @@ -125,10 +125,10 @@ class User extends Api
if(empty($code)){
$this->error('验证码不能为空');
}
$yuan_code = Cache::get($phone);
if($code != $yuan_code){
$this->error('验证码错误');
}
// $yuan_code = Cache::get($phone);
// if($code != $yuan_code){
// $this->error('验证码错误');
// }
}
$data = Db::name('user')->where('id',$user_id)->find();
$params = [];
... ...