From 177ff8c6f0caec8b82c1360d7dccf553b534c8fa Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Thu, 24 Oct 2024 14:34:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=86=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E6=88=91=E5=8E=86=E5=8F=B2=E9=97=AE=E8=AF=8A=E5=8C=BB=E7=94=9F?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=8E=A5=E5=8F=A31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']);