Evaluate.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\admin\controller\workorder;
  3. use app\common\controller\Backend;
  4. /**
  5. * 工单评价管理
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Evaluate extends Backend
  10. {
  11. /**
  12. * Evaluate模型对象
  13. * @var \app\admin\model\workorder\Evaluate
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\workorder\Evaluate;
  20. $this->view->assign("starsList", $this->model->getStarsList());
  21. $this->view->assign("solvedList", $this->model->getSolvedList());
  22. }
  23. public function import()
  24. {
  25. parent::import();
  26. }
  27. /**
  28. * 查看
  29. */
  30. public function index()
  31. {
  32. //当前是否为关联查询
  33. $this->relationSearch = true;
  34. //设置过滤方法
  35. $this->request->filter(['strip_tags', 'trim']);
  36. if ($this->request->isAjax()) {
  37. //如果发送的来源是Selectpage,则转发到Selectpage
  38. if ($this->request->request('keyField')) {
  39. return $this->selectpage();
  40. }
  41. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  42. $list = $this->model->with(['orders', 'user', 'category'])
  43. ->where($where)
  44. ->order($sort, $order)
  45. ->paginate($limit);
  46. foreach ($list as $row) {
  47. $row->getRelation('orders')->visible(['title']);
  48. $row->getRelation('user')->visible(['nickname']);
  49. $row->getRelation('category')->visible(['name']);
  50. }
  51. $result = ["total" => $list->total(), "rows" => $list->items()];
  52. return json($result);
  53. }
  54. return $this->view->fetch();
  55. }
  56. }