|
|
@@ -60,6 +60,19 @@ Route::group(config('admin.api_admin_prefix') . '/', function () {
|
|
60
|
60
|
Route::get('lst', '/lst')->name('configClassifyLst');
|
|
61
|
61
|
})->prefix('admin.system.config.ConfigClassify');
|
|
62
|
62
|
|
|
|
63
|
+
|
|
|
64
|
+
|
|
|
65
|
+ //商家贡献值
|
|
|
66
|
+ Route::group('config/contribution', function () {
|
|
|
67
|
+ Route::get('create/table', '/createTable')->name('configContributionCreateForm');
|
|
|
68
|
+ Route::post('create', '/create')->name('configContributionCreate');
|
|
|
69
|
+ Route::delete('delete/:id', '/delete')->name('configContributionDelete');
|
|
|
70
|
+ Route::post('update/:id', '/update')->name('configContributionUpdate');
|
|
|
71
|
+ Route::get('update/table/:id', '/updateTable')->name('configContributionUpdateForm');
|
|
|
72
|
+ Route::get('lst', '/lst')->name('configContributionLst');
|
|
|
73
|
+ })->prefix('admin.system.config.Contribution');
|
|
|
74
|
+
|
|
|
75
|
+
|
|
63
|
76
|
Route::get('menus', 'admin.system.auth.Menu/menus');
|
|
64
|
77
|
//配置
|
|
65
|
78
|
Route::group('config/setting', function () {
|