提交等待

This commit is contained in:
筱锋xiao_lfeng 2023-06-24 22:51:03 +08:00
parent b0b9d3d241
commit c7550fbf3f

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() {
// 检查数据
}
}