From 0b9005b4c473a776c3c5e7d7d0975c3d165b0d67 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Thu, 12 Oct 2023 13:11:02 +0800 Subject: [PATCH] 1 --- app/Services/PatientDoctorService.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Services/PatientDoctorService.php b/app/Services/PatientDoctorService.php index 5e741ae..d2430f4 100644 --- a/app/Services/PatientDoctorService.php +++ b/app/Services/PatientDoctorService.php @@ -186,6 +186,8 @@ class PatientDoctorService extends BaseService $doctor_params["iden_auth_status"] = 1;// 身份认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败) $doctor_params["is_bind_bank"] = 1;// 是否已绑定结算银行卡(0:否 1:是) + // 问诊类型 + $inquiry_type = 0; if (!empty($is_search_welfare_reception)){ $inquiry_type = 3; } @@ -351,7 +353,7 @@ class PatientDoctorService extends BaseService $result['follow'] = PatientFollow::getExists($params); // 获取医生问诊配置-问诊购药 - $user_doctor['multi_point_enable'] = 0; + $result['multi_point_enable'] = 0; // 获取问诊价格 // 专家-公益 @@ -397,7 +399,7 @@ class PatientDoctorService extends BaseService $value['duration'] = $system_inquiry_config['duration']; if ($value['is_enable'] == 1 && $value['inquiry_type'] == 4 && $value['inquiry_mode'] == 1){ - $user_doctor['multi_point_enable'] = 1; + $result['multi_point_enable'] = 1; } unset($system_inquiry_config); }