FormulaConsume.php 1.9 KB

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