From 6ce57339a0d375154bd2d6c1b8ca4087e24f27da Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Tue, 10 Oct 2023 17:27:00 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=8C=BB=E7=94=9F=E9=97=AE?= =?UTF-8?q?=E8=AF=8A=E9=85=8D=E7=BD=AE=E6=8E=A5=E5=8F=A3=EF=BC=8C=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=E6=8E=A5=E5=8F=A3=E5=BC=80=E5=85=B3=E5=88=A4=E6=96=AD?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/DoctorInquiryService.php | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/app/Services/DoctorInquiryService.php b/app/Services/DoctorInquiryService.php index db8cd3a..3ea3f69 100644 --- a/app/Services/DoctorInquiryService.php +++ b/app/Services/DoctorInquiryService.php @@ -51,17 +51,7 @@ class DoctorInquiryService extends BaseService } // 接诊开关 - $result['info']['is_open'] = 0; - if ($inquiry_type == 1) { - // 专家 - $result['info']['is_open'] = $doctor['is_img_expert_reception']; - } elseif ($inquiry_type == 2) { - // 快速 - $result['info']['is_open'] = $doctor['is_img_quick_reception']; - } elseif ($inquiry_type == 3) { - // 公益 - $result['info']['is_open'] = $doctor['is_img_welfare_reception']; - } + $is_open = 0; // 接诊价格 $result['info']['inquiry_price'] = 0; @@ -102,8 +92,14 @@ class DoctorInquiryService extends BaseService } $result['info']['work_num_day'] = $doctor_inquiry_config['work_num_day'] ?: 0; + + // 接诊开关 + $is_open = 1; } + // 接诊开关 + $result['info']['is_open'] = $is_open; + // 每日最大接诊数量 $result['config']['max_work_num_day'] = $system_inquiry_config['max_work_num_day'];