diff --git a/route/api.php b/route/api.php index 836b653e..57416a5b 100644 --- a/route/api.php +++ b/route/api.php @@ -244,6 +244,7 @@ Route::group('api/', function () { Route::post('intention/update/:id', 'api.store.merchant.MerchantIntention/update'); Route::post('store/product/group/cancel', 'api.store.product.StoreProductGroup/cancel'); + Route::get('admin/:merId/expenditure', 'api.server.StoreOrder/expenditure');//商户账单 //客服商品管理 Route::group('server/:merId', function () { //商品 @@ -290,7 +291,6 @@ Route::group('api/', function () { //管理员订单 Route::group('admin/:merId', function () { - Route::get('/expenditure', '/expenditure'); Route::get('/statistics', '/orderStatistics'); Route::get('/order_price', '/orderDetail'); Route::get('/order_list', '/orderList');