index.stub 278 B

123456789101112
  1. /**
  2. * 列表
  3. * @date {%DATE%}
  4. * @return \think\Response
  5. */
  6. public function index()
  7. {
  8. $where = $this->request->getMore([
  9. {%FIELD_SEARCH_PHP%}
  10. ]);
  11. return app('json')->success($this->service->getCrudListIndex($where));
  12. }