Feedback.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\exception\PDOException;
  6. use think\exception\ValidateException;
  7. use Exception;
  8. /**
  9. *
  10. *
  11. * @icon fa fa-circle-o
  12. */
  13. class Feedback extends Backend
  14. {
  15. /**
  16. * Feedback模型对象
  17. * @var \app\admin\model\shopro\Feedback
  18. */
  19. protected $model = null;
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\admin\model\shopro\Feedback;
  24. $this->view->assign("statusList", $this->model->getStatusList());
  25. }
  26. /**
  27. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  28. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  29. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  30. */
  31. /**
  32. * 查看
  33. */
  34. public function index()
  35. {
  36. //当前是否为关联查询
  37. $this->relationSearch = false;
  38. //设置过滤方法
  39. $this->request->filter(['strip_tags', 'trim']);
  40. if ($this->request->isAjax()) {
  41. //如果发送的来源是Selectpage,则转发到Selectpage
  42. if ($this->request->request('keyField')) {
  43. return $this->selectpage();
  44. }
  45. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  46. $total = $this->model
  47. ->where($where)
  48. ->order($sort, $order)
  49. ->count();
  50. $list = $this->model
  51. ->with(['user' => function ($query) {
  52. return $query->withField('id, nickname, avatar');
  53. }])
  54. ->where($where)
  55. ->order($sort, $order)
  56. ->limit($offset, $limit)
  57. ->select();
  58. $list = collection($list)->toArray();
  59. $result = array("total" => $total, "rows" => $list);
  60. $this->success('意见反馈', null, $result);
  61. }
  62. return $this->view->fetch();
  63. }
  64. /**
  65. * 编辑
  66. */
  67. public function edit($id = null)
  68. {
  69. $row = $this->model->get($id);
  70. if (!$row) {
  71. $this->error(__('No Results were found'));
  72. }
  73. if ($this->request->isPost()) {
  74. $params = $this->request->post();
  75. if ($params) {
  76. $params = json_decode($params['data'], true);
  77. $result = false;
  78. Db::startTrans();
  79. try {
  80. $result = $row->allowField(true)->save($params);
  81. Db::commit();
  82. } catch (ValidateException $e) {
  83. Db::rollback();
  84. $this->error($e->getMessage());
  85. } catch (PDOException $e) {
  86. Db::rollback();
  87. $this->error($e->getMessage());
  88. } catch (Exception $e) {
  89. Db::rollback();
  90. $this->error($e->getMessage());
  91. }
  92. if ($result !== false) {
  93. $this->success();
  94. } else {
  95. $this->error(__('No rows were updated'));
  96. }
  97. }
  98. $this->error(__('Parameter %s can not be empty', ''));
  99. }
  100. $row->user = \app\admin\model\shopro\user\User::where('id', $row->user_id)->field('id, nickname, avatar')->find();
  101. $this->assignconfig("row", $row);
  102. return $this->view->fetch();
  103. }
  104. /**
  105. * 回收站
  106. */
  107. public function recyclebin()
  108. {
  109. //设置过滤方法
  110. $this->request->filter(['strip_tags']);
  111. if ($this->request->isAjax()) {
  112. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  113. $total = $this->model
  114. ->onlyTrashed()
  115. ->where($where)
  116. ->order($sort, $order)
  117. ->count();
  118. $list = $this->model
  119. ->onlyTrashed()
  120. ->where($where)
  121. ->order($sort, $order)
  122. ->limit($offset, $limit)
  123. ->select();
  124. $result = array("total" => $total, "rows" => $list);
  125. return json($result);
  126. }
  127. return $this->view->fetch();
  128. }
  129. }