You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Niucloud-admin 企业快速开发的saas管理平台
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网址:https://www.niucloud-admin.com
|
|
// +----------------------------------------------------------------------
|
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Niucloud Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
use app\api\middleware\ApiChannel;
|
|
use app\api\middleware\ApiCheckToken;
|
|
use app\api\middleware\ApiLog;
|
|
use think\facade\Route;
|
|
|
|
|
|
/**
|
|
* 会员个人信息管理
|
|
*/
|
|
Route::group('order', function () {
|
|
|
|
/***************************************************** 充值订单相关 *************************************************/
|
|
//充值订单创建
|
|
Route::post('recharge', 'order.Recharge/create');
|
|
// 充值订单列表
|
|
Route::get('recharge', 'order.Recharge/lists');
|
|
// 充值订单详情
|
|
Route::get('recharge/:order_id', 'order.Recharge/detail');
|
|
})->middleware(ApiChannel::class)
|
|
->middleware(ApiCheckToken::class, true)
|
|
->middleware(ApiLog::class);
|