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); }