This commit is contained in:
wucongxing 2023-04-25 14:52:02 +08:00
parent 27991ce874
commit 02a534bb1e

View File

@ -129,7 +129,7 @@ class PatientDoctorService extends BaseService
// 好评率-超过5个已结束的订单后展示 // 好评率-超过5个已结束的订单后展示
$user_doctor['praise_rate'] = floor($user_doctor['praise_rate'] * 0.05 * 100) / 100; $user_doctor['praise_rate'] = floor($user_doctor['praise_rate'] * 0.05 * 100) / 100;
// 响应时间-超过5个已结束的订单后展示 // 响应时间-超过5个已结束的订单后展示
$user_doctor['avg_response_time'] = floor($user_doctor['avg_response_time'] * 0.05 * 100) / 100 * 60; $user_doctor['avg_response_time'] = (float)floor($user_doctor['avg_response_time'] /60 * 10) / 10;
// 获取医生订单数 // 获取医生订单数
$params = array(); $params = array();