From 5778f28563bd3f0334067c6b5e75f881497361d5 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Tue, 18 Apr 2023 15:49:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95=E9=80=80?= =?UTF-8?q?=E6=AC=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/routes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/routes.php b/config/routes.php index eea1a5a..6a01be5 100644 --- a/config/routes.php +++ b/config/routes.php @@ -600,10 +600,10 @@ Router::get('/case', [InquiryController::class, 'getPatientInquiryCase']); // 测试使用 Router::addGroup('/test', function () { - Router::get('', [TestController::class, 'test_13']); + Router::get('', [TestController::class, 'test']); // 模拟退款 - Router::get('/test_13', [TestController::class, 'test_13']); + Router::get('/refund', [TestController::class, 'refund']); });