From e9124187cb18dcddf6cbd77613d2342ca4b86566 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Tue, 9 May 2023 11:49:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8C=BB=E7=94=9F=E5=B9=B3?= =?UTF-8?q?=E5=9D=87=E7=9B=B8=E5=BA=94=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/IndexService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/IndexService.php b/app/Services/IndexService.php index 8c9630c..fc72b0f 100644 --- a/app/Services/IndexService.php +++ b/app/Services/IndexService.php @@ -111,7 +111,7 @@ class IndexService extends BaseService $info['is_img_welfare_reception'] = $doctor['is_img_welfare_reception'];// 是否参加公益图文问诊(0:否 1:是) $info['is_img_quick_reception'] = $doctor['is_img_quick_reception'];// 是否参加快速图文接诊(0:否 1:是) $info['praise_rate'] = $doctor['praise_rate'];// 好评率(百分制。回复质量占4、服务态度占3、回复速度占3。每周计算一次) - $info['avg_response_time'] = $doctor['avg_response_time'];// 平均响应时间(分钟制) + $info['avg_response_time'] = (float)floor($doctor['avg_response_time'] /60 * 10) / 10;;// 平均响应时间(分钟制) $info['number_of_fans'] = $doctor['number_of_fans'];// 被关注数量 $info['inquiry_price'] = $doctor_inquiry_config['inquiry_price'] ?? "";// 在线问诊价格 $info['not_accepted_inquiry_num'] = $not_accepted_inquiry_num ?? 0;// 获取未接诊患者个数