修改提现路由

This commit is contained in:
2023-04-07 11:02:59 +08:00
parent b4beb81d6f
commit a5599a5bc1
3 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ Router::addGroup('/doctor', function () {
// 提现
Router::addGroup('/withdrawal', function () {
// 获取提现数据
Router::post('info', [DoctorAccountController::class, 'getDoctorWithdrawalInfo']);
Router::post('/info', [DoctorAccountController::class, 'getDoctorWithdrawalInfo']);
// 获取可提现问诊订单列表
Router::get('/order', [DoctorAccountController::class, 'getDoctorWithdrawalOrderList']);