新增获取医生评价
This commit is contained in:
+4
-1
@@ -217,7 +217,7 @@ Router::addGroup('/patient', function () {
|
||||
// 获取医生详情-问诊
|
||||
Router::get('/{doctor_id:\d+}', [PatientDoctorController::class, 'getInquiryDoctorInfo']);
|
||||
|
||||
// 医生详情简介-详情中的简介
|
||||
// 医生详情简介-详情中的简介-废弃
|
||||
Router::get('/profile/{doctor_id:\d+}', [PatientDoctorController::class, 'getDoctorProfile']);
|
||||
|
||||
// 删除服务过患者的医生
|
||||
@@ -225,6 +225,9 @@ Router::addGroup('/patient', function () {
|
||||
|
||||
// 获取我的问诊、关注医生列表
|
||||
Router::get('/my', [PatientDoctorController::class, 'getDoctorList']);
|
||||
|
||||
// 获取医生评价
|
||||
Router::get('/evaluation/{doctor_id:\d+}', [PatientDoctorController::class, 'getDoctorEvaluationList']);
|
||||
});
|
||||
|
||||
// 家庭成员
|
||||
|
||||
Reference in New Issue
Block a user