修改身份证认证

This commit is contained in:
wucongxing 2023-05-16 09:55:42 +08:00
parent 520ff59289
commit 0152075fee

View File

@ -40,7 +40,10 @@ class IdCard extends Base
}
if ($result['code'] != "200"){
throw new BusinessException("姓名与身份证号不一致");
if (!empty($result['msg'])){
return $result['msg'];
}
return "身份证认证失败";
}
if (empty($result['result'])){