ShopOrder.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 ShopOrder extends Backend
  10. {
  11. /**
  12. * ShopOrder模型对象
  13. * @var \app\admin\model\ShopOrder
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\ShopOrder;
  20. }
  21. /**
  22. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  23. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  24. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  25. */
  26. /**
  27. * 查看
  28. */
  29. public function index($suser_id=null)
  30. {
  31. //设置过滤方法
  32. $this->request->filter(['strip_tags']);
  33. if ($this->request->isAjax()) {
  34. //如果发送的来源是Selectpage,则转发到Selectpage
  35. if ($this->request->request('keyField')) {
  36. return $this->selectpage();
  37. }
  38. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  39. $where1['status']=['not in',['0','9']];
  40. $where1['suser_id']=$suser_id;
  41. $total = $this->model
  42. ->where($where)
  43. ->where('is_system_del','0')
  44. //->where('is_del','0')
  45. ->where($where1)
  46. ->order($sort, $order)
  47. ->count();
  48. $list = $this->model
  49. ->where($where)
  50. ->with(['shopuser','member'])
  51. ->where('is_system_del','0')
  52. //->where('is_del','0')
  53. ->where($where1)
  54. ->order($sort, $order)
  55. ->limit($offset, $limit)
  56. ->select();
  57. $list = collection($list)->toArray();
  58. $result = array("total" => $total, "rows" => $list);
  59. return json($result);
  60. }
  61. return $this->view->fetch();
  62. }
  63. }