feature #7

Merged
XiaoLFeng merged 21 commits from feature into master 2023-06-24 22:58:58 +08:00
Showing only changes of commit c7550fbf3f - Show all commits

View File

@ -91,6 +91,11 @@ 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);
}
@ -106,6 +111,11 @@ protected function ViewSort(): Factory|View|Application
protected function ViewColor(): Factory|View|Application
{
return view('concole.friends-link.color',$this->data);
return view('console.friends-link.color',$this->data);
}
protected function apiConsoleAdd() {
// 检查数据
}
}