13 lines
278 B
Plaintext
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));
|
|
}
|