From 18d08a371872fc1996662e10f75c1797e44cd484 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Mon, 10 Jul 2023 14:38:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8C=BB=E7=94=9F=E8=BA=AB?= =?UTF-8?q?=E4=BB=BD=E8=AE=A4=E8=AF=81=20=E6=89=A7=E4=B8=9A=E8=AF=81?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E4=B8=8D=E5=8F=AF=E4=BF=AE=E6=94=B9=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E3=80=82=E4=BF=AE=E6=94=B9=E4=B8=BA=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E6=97=B6=E5=85=81=E8=AE=B8=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/DoctorAuthService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Services/DoctorAuthService.php b/app/Services/DoctorAuthService.php index 05afb18..3104839 100644 --- a/app/Services/DoctorAuthService.php +++ b/app/Services/DoctorAuthService.php @@ -454,14 +454,14 @@ class DoctorAuthService extends BaseService } // 执业证-上传后无法修改 - if (empty($user_doctor_info['license_cert'])){ + if (empty($user_doctor_info['license_cert']) || $doctor['iden_auth_status'] == 3){ $license_cert = implode(',', $request_params['license_cert']); $license_cert = PcreMatch::pregRemoveOssWebsite($license_cert); $doctor_info_data['license_cert'] = $license_cert; } // 医师资格证-上传后无法修改 - if (empty($user_doctor_info['qualification_cert'])){ + if (empty($user_doctor_info['qualification_cert']) || $doctor['iden_auth_status'] == 3){ $qualification_cert = implode(',', $request_params['qualification_cert']); $qualification_cert = PcreMatch::pregRemoveOssWebsite($qualification_cert); $doctor_info_data['qualification_cert'] = $qualification_cert; @@ -469,7 +469,7 @@ class DoctorAuthService extends BaseService // 医师工作证-上传后无法修改 - if (empty($user_doctor_info['work_cert'])){ + if (empty($user_doctor_info['work_cert']) || $doctor['iden_auth_status'] == 3){ $work_cert = implode(',', $request_params['work_cert']); $work_cert = PcreMatch::pregRemoveOssWebsite($work_cert); $doctor_info_data['work_cert'] = $work_cert;