新增搜索器

This commit is contained in:
wuyanwen
2020-01-13 21:23:24 +08:00
parent 3b67f3fb5f
commit be02170697
13 changed files with 115 additions and 59 deletions

View File

@@ -22,9 +22,9 @@ class Job extends CatchController
* @param CatchRequest $request
* @return \think\response\Json
*/
public function index(CatchRequest $request): \think\response\Json
public function index(): \think\response\Json
{
return CatchResponse::paginate($this->job->getList($request->param()));
return CatchResponse::paginate($this->job->getList());
}
/**