This commit is contained in:
彭桃 2023-02-07 17:38:12 +08:00
parent ba631319b2
commit f14dfa2eca

View File

@ -433,7 +433,25 @@ class Maintainentry extends BaseController
} catch (\Exception $e) {
$this->apiError($e->getMessage());
}
$map['user_id'] = $user_id;
$oldmsg = Db::table('fa_szxc_information_usermsg')->where($map)->find();
if($oldmsg['phone'] != $post['phone']){
// 判断手机号是否已经注册
$is_mobile = Db::table('fa_user')->where('mobile',$post['phone'])->find();
if ($is_mobile) {
$this->apiError('手机号已被使用');
}
}
if($oldmsg['idcard'] != $post['idcard']){
//判断身份证号是否已被使用
$InformationUsermsg = Db::table('fa_szxc_information_usermsg')->where('idcard',$post['idcard'])->field('idcard')->find();
if ($InformationUsermsg) {
$this->apiError('身份证号已被使用');
}
}
if ($post['householder_id']==$user_id) {
$data['is_hz']=1;
}