...
|
...
|
@@ -115,10 +115,10 @@ class User extends Api |
|
|
$code = $this->request->param('code');
|
|
|
$image = $this->request->param('image');
|
|
|
if(!empty($phone)){
|
|
|
$have_mobile = Db::name('user')->where('mobile', $phone)->where('id', '<>', $user_id)->find();
|
|
|
if($have_mobile){
|
|
|
$this->error('手机号已存在');
|
|
|
}
|
|
|
// $have_mobile = Db::name('user')->where('mobile', $phone)->where('id', '<>', $user_id)->find();
|
|
|
// if($have_mobile){
|
|
|
// $this->error('手机号已存在');
|
|
|
// }
|
|
|
if(empty($code)){
|
|
|
$this->error('验证码不能为空');
|
|
|
}
|
...
|
...
|
|