13 lines
278 B
Plaintext
Raw Normal View History

2025-03-12 10:47:34 +08:00
/**
* 列表
* @date {%DATE%}
* @return \think\Response
*/
public function index()
{
$where = $this->request->getMore([
{%FIELD_SEARCH_PHP%}
]);
return app('json')->success($this->service->getCrudListIndex($where));
}