From f14dfa2eca174b5e3409db451b43c037af699480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Tue, 7 Feb 2023 17:38:12 +0800 Subject: [PATCH] 11 --- app/api/controller/Maintainentry.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app/api/controller/Maintainentry.php b/app/api/controller/Maintainentry.php index 472c19a..3788127 100644 --- a/app/api/controller/Maintainentry.php +++ b/app/api/controller/Maintainentry.php @@ -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; }