diff --git a/config/routes.php b/config/routes.php index 55f849b..7a7eaa8 100644 --- a/config/routes.php +++ b/config/routes.php @@ -403,7 +403,7 @@ Router::addGroup('/patient', function () { Router::get('/my', [PatientDoctorController::class, 'getDoctorList']); // 获取我历史问诊医生列表 - Router::get('/my', [PatientDoctorController::class, 'getHistoryDoctorList']); + Router::get('/history', [PatientDoctorController::class, 'getHistoryDoctorList']); // 获取医生评价 Router::get('/evaluation/{doctor_id:\d+}', [PatientDoctorController::class, 'getDoctorEvaluationList']);