修改患者端医生平均相应时间

This commit is contained in:
wucongxing 2023-05-09 11:54:59 +08:00
parent 52509fe8b8
commit e9c520fb83

View File

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