This commit is contained in:
luofei 2024-02-26 16:49:12 +08:00
commit 5b8d5e23ca
2 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ Route::group(function () {
Route::delete('delete/:id', '/delete')->name('systemSupplyMenuDelete')->append(['merchant' => 1])->option([ Route::delete('delete/:id', '/delete')->name('systemSupplyMenuDelete')->append(['merchant' => 1])->option([
'_alias' => '商户菜单/权限删除', '_alias' => '商户菜单/权限删除',
]); ]);
})->prefix('admin.system.auth.Menu')->option([ })->prefix('admin.system.auth.SupplyMenu')->option([
'_path' => '/supply/system', '_path' => '/supply/system',
'_auth' => true, '_auth' => true,
]); ]);

View File

@ -86,13 +86,13 @@ Route::group(function () {
Route::get('product_cart', '/productCart')->name('merchantStatisticsProductCart')->option([ Route::get('product_cart', '/productCart')->name('merchantStatisticsProductCart')->option([
'_alias' => '商品加购排行', '_alias' => '商品加购排行',
]); ]);
Route::get('get_merchant_count', '/getMerchantCount')->name('merchantStatisticsMerchantCount')->option([ Route::get('get_merchant_count', '/getMerchantCount')->option([
'_alias' => '首页未处理业务统计', '_alias' => '首页未处理业务统计',
]); ]);
Route::get('get_merchant_todo', '/getMerchantTodo')->name('merchantStatisticsMerchantTodo')->option([ Route::get('get_merchant_todo', '/getMerchantTodo')->option([
'_alias' => '待办事项', '_alias' => '待办事项',
]); ]);
Route::get('get_product_sales_price_top', '/getProductSalesPriceTop')->name('merchantStatisticsProductSalesPriceTop')->option([ Route::get('get_product_sales_price_top', '/getProductSalesPriceTop')->option([
'_alias' => '获取商户代办统计', '_alias' => '获取商户代办统计',
]); ]);
})->prefix('merchant.Common')->option([ })->prefix('merchant.Common')->option([