Appindexdes.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. /**
  5. *
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Appindexdes extends Backend
  10. {
  11. /**
  12. * Appindexdes模型对象
  13. * @var \app\admin\model\Appindexdes
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\Appindexdes;
  20. }
  21. public function index($ids=null)
  22. {
  23. $ids=input('ids');
  24. if(empty($ids)){
  25. $ids=session('despid');
  26. }else{
  27. session('despid',$ids);
  28. }
  29. //设置过滤方法
  30. $this->request->filter(['strip_tags', 'trim']);
  31. if (false === $this->request->isAjax()) {
  32. return $this->view->fetch();
  33. }
  34. //如果发送的来源是 Selectpage,则转发到 Selectpage
  35. if ($this->request->request('keyField')) {
  36. return $this->selectpage();
  37. }
  38. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  39. $dts['pid'] =$ids;
  40. $list = $this->model
  41. ->where($where)
  42. ->where($dts)
  43. ->order($sort, $order)
  44. ->paginate($limit);
  45. $result = ['total' => $list->total(), 'rows' => $list->items()];
  46. return json($result);
  47. }
  48. /**
  49. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  50. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  51. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  52. */
  53. }