From 9bdf66723caa773aef71688af2a3960cb55a3e2c Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Mon, 19 Feb 2024 13:35:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E7=94=B1=E5=A4=87?= =?UTF-8?q?=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/routes.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/routes.php b/config/routes.php index d4ac47b..db1a9be 100644 --- a/config/routes.php +++ b/config/routes.php @@ -109,13 +109,13 @@ Router::addGroup('/doctor', function () { // 医生问诊开关 Router::put('/open', [DoctorInquiryConfigController::class, 'putInquiryOpen']); - // 获取医生问诊配置-服务设置 + // 获取医生问诊配置-疑难会诊-服务设置 Router::get('/service', [DoctorInquiryConfigController::class, 'getInquiryServiceConfig']); - // 新增医生问诊配置-服务设置 + // 新增医生问诊配置-疑难会诊-服务设置 Router::post('/service', [DoctorInquiryConfigController::class, 'addInquiryServiceConfig']); - // 修改医生问诊配置-服务设置 + // 修改医生问诊配置-疑难会诊-服务设置 Router::put('/service/{config_service_id:\d+}', [DoctorInquiryConfigController::class, 'putInquiryServiceConfig']); });