This commit is contained in:
2023-10-12 13:46:29 +08:00
parent 95e6247e28
commit 6afdad5c64
+3 -3
View File
@@ -183,12 +183,12 @@ class UserDoctor extends Model
// 是否在线(0:不在线 1:在线) // 是否在线(0:不在线 1:在线)
$params["is_online"] = 1; $params["is_online"] = 1;
// 是否参加专家图文接诊(0:否 1:是) // // 是否参加专家图文接诊(0:否 1:是)
$params["is_img_expert_reception"] = 1; // $params["is_img_expert_reception"] = 1;
$datas = self::with([ $datas = self::with([
'Hospital:hospital_id,hospital_name,hospital_level_name', 'Hospital:hospital_id,hospital_name,hospital_level_name',
'DoctorInquiryConfig', "DoctorInquiryConfig",
]) ])
->where($params) ->where($params)
->orderBy("is_recommend", "desc") ->orderBy("is_recommend", "desc")