Compare commits

..

No commits in common. "d83e013c0c5ed8fe632e4d1d591bf51e85f8dc37" and "b0b9d3d2415fa4ee479d70d6a32144120dbda9ce" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View File

@ -91,11 +91,6 @@ protected function ViewList(Request $request): Factory|View|Application|Redirect
protected function ViewCheck(Request $request): Factory|View|Application
{
// 检查是否存在含有未在本站分配位置
$this->data['blog'] = DB::table('blog_link')
->whereIn('blog_link.blogLocation',[0])
->get()
->toArray();
return view('console.friends-link.check', $this->data);
}
@ -111,11 +106,6 @@ protected function ViewSort(): Factory|View|Application
protected function ViewColor(): Factory|View|Application
{
return view('console.friends-link.color',$this->data);
}
protected function apiConsoleAdd() {
// 检查数据
return view('concole.friends-link.color',$this->data);
}
}

View File

@ -44,6 +44,5 @@
});
Route::prefix('custom')->group(function () {
Route::post('add',[Link::class,'apiCustomAdd'])->name('api.link.custom.add');
Route::get('search',[Link::class, 'apiCustomSearch'])->name('api.link.custom.search');
});
});