Log.php 1.7 KB

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