2025-03-12 10:47:34 +08:00

13 lines
278 B
Plaintext

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