|
...
|
...
|
@@ -306,6 +306,14 @@ Route::middleware(['aloginauth'])->group(function () { |
|
|
|
Route::any('/getAnchorLink', [Aside\Optimize\OptimizeController::class, 'getAnchorLink'])->name('admin.optimize_getAnchorLink');//设置robots开关
|
|
|
|
Route::any('/getAfterCount', [Aside\Optimize\AfterCountController::class, 'getAfterCount'])->name('admin.optimize_getAfterCount');//售后统计数据
|
|
|
|
Route::any('/getAfterCountInfo', [Aside\Optimize\AfterCountController::class, 'getAfterCountInfo'])->name('admin.optimize_getAfterCountInfo');//售后统计数据详情
|
|
|
|
|
|
|
|
//聚合页关键词设置
|
|
|
|
Route::prefix('check_list')->group(function () {
|
|
|
|
Route::any('/', [Aside\Optimize\CheckListController::class, 'lists'])->name('admin.check_list');
|
|
|
|
Route::any('/info', [Aside\Optimize\CheckListController::class, 'info'])->name('admin.check_list_info');
|
|
|
|
Route::any('/save', [Aside\Optimize\CheckListController::class, 'save'])->name('admin.check_list_save');
|
|
|
|
Route::any('/del', [Aside\Optimize\CheckListController::class, 'del'])->name('admin.check_list_del');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
//生成关键字
|
|
|
|
Route::prefix('create_keyword')->group(function () {
|
|
...
|
...
|
@@ -551,6 +559,7 @@ Route::middleware(['aloginauth'])->group(function () { |
|
|
|
Route::any('/save', [Aside\Project\AggregateKeywordController::class, 'save'])->name('admin.aggregateKeyword_save');
|
|
|
|
Route::any('/del', [Aside\Project\AggregateKeywordController::class, 'del'])->name('admin.aggregateKeyword_del');
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
//无需登录验证的路由组
|
...
|
...
|
|