CustomerService.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. namespace app\admin\controller\shopro\chat;
  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 CustomerService extends Backend
  14. {
  15. /**
  16. * CustomerService模型对象
  17. * @var \app\admin\model\shopro\chat\CustomerService
  18. */
  19. protected $model = null;
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\admin\model\shopro\chat\CustomerService;
  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. {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField'))
  44. {
  45. return $this->selectpage();
  46. }
  47. list($where, $sort, $order, $offset, $limit) = $this->buildparams(['id', 'name']);
  48. $total = $this->model
  49. ->where($where)
  50. ->order($sort, $order)
  51. ->count();
  52. $list = $this->model
  53. ->with(['admin'])
  54. ->where($where)
  55. ->order($sort, $order)
  56. ->limit($offset, $limit)
  57. ->select();
  58. foreach ($list as $row) {
  59. $row->visible(['id','admin_id','admin','name','avatar','max_num','lasttime','status','createtime','updatetime']);
  60. }
  61. $list = collection($list)->toArray();
  62. $result = array("total" => $total, "rows" => $list);
  63. return $this->success('操作成功', null, $result);
  64. }
  65. return $this->view->fetch();
  66. }
  67. /**
  68. * 添加
  69. */
  70. public function add()
  71. {
  72. if ($this->request->isPost()) {
  73. $params = $this->request->post();
  74. if ($params) {
  75. $params = $this->preExcludeFields($params);
  76. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  77. $params[$this->dataLimitField] = $this->auth->id;
  78. }
  79. $result = false;
  80. Db::startTrans();
  81. try {
  82. //是否采用模型验证
  83. if ($this->modelValidate) {
  84. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  85. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  86. $this->model->validateFailException(true)->validate($validate);
  87. }
  88. $result = $this->model->allowField(true)->save($params);
  89. Db::commit();
  90. } catch (ValidateException $e) {
  91. Db::rollback();
  92. $this->error($e->getMessage());
  93. } catch (PDOException $e) {
  94. Db::rollback();
  95. $this->error($e->getMessage());
  96. } catch (Exception $e) {
  97. Db::rollback();
  98. $this->error($e->getMessage());
  99. }
  100. if ($result !== false) {
  101. $this->success();
  102. } else {
  103. $this->error(__('No rows were inserted'));
  104. }
  105. }
  106. $this->error(__('Parameter %s can not be empty', ''));
  107. }
  108. return $this->view->fetch();
  109. }
  110. /**
  111. * 编辑
  112. */
  113. public function edit($ids = null)
  114. {
  115. $row = $this->model->get($ids);
  116. if (!$row) {
  117. $this->error(__('No Results were found'));
  118. }
  119. $adminIds = $this->getDataLimitAdminIds();
  120. if (is_array($adminIds)) {
  121. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  122. $this->error(__('You have no permission'));
  123. }
  124. }
  125. if ($this->request->isPost()) {
  126. $params = $this->request->post();
  127. if ($params) {
  128. $params = $this->preExcludeFields($params);
  129. $result = false;
  130. Db::startTrans();
  131. try {
  132. //是否采用模型验证
  133. if ($this->modelValidate) {
  134. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  135. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  136. $row->validateFailException(true)->validate($validate);
  137. }
  138. $result = $row->allowField(true)->save($params);
  139. Db::commit();
  140. } catch (ValidateException $e) {
  141. Db::rollback();
  142. $this->error($e->getMessage());
  143. } catch (PDOException $e) {
  144. Db::rollback();
  145. $this->error($e->getMessage());
  146. } catch (Exception $e) {
  147. Db::rollback();
  148. $this->error($e->getMessage());
  149. }
  150. if ($result !== false) {
  151. $this->success();
  152. } else {
  153. $this->error(__('No rows were updated'));
  154. }
  155. }
  156. $this->error(__('Parameter %s can not be empty', ''));
  157. }
  158. $this->view->assign("row", $row);
  159. $this->assignconfig("row", $row);
  160. return $this->view->fetch();
  161. }
  162. }