You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
278 B

1 year ago
/**
* 列表
* @date {%DATE%}
* @return \think\Response
*/
public function index()
{
$where = $this->request->getMore([
{%FIELD_SEARCH_PHP%}
]);
return app('json')->success($this->service->getCrudListIndex($where));
}