Users.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. namespace app\admin\controller\users;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\Exception;
  6. use think\exception\PDOException;
  7. use think\exception\ValidateException;
  8. /**
  9. *
  10. *
  11. * @icon fa fa-users
  12. */
  13. class Users extends Backend
  14. {
  15. /**
  16. * Users模型对象
  17. * @var \app\admin\model\users\Users
  18. */
  19. protected $model = null;
  20. protected $multiFields = 'status_switch';
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = new \app\admin\model\users\Users;
  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();
  48. $user_level = input('user_level');
  49. if (isset($user_level)) {
  50. $where = [
  51. 'user_level' => $user_level
  52. ];
  53. }
  54. $total = $this->model
  55. ->where($where)
  56. ->order($sort, $order)
  57. ->count();
  58. $list = $this->model
  59. ->where($where)
  60. ->order($sort, $order)
  61. ->limit($offset, $limit)
  62. ->select();
  63. foreach ($list as $row) {
  64. $row->visible(['user_id','user_nickname','user_tel','user_avatar','user_level','user_money','user_redbean','user_whitebean','create_time','update_time','status_switch']);
  65. }
  66. $list = collection($list)->toArray();
  67. $result = array("total" => $total, "rows" => $list);
  68. return json($result);
  69. }
  70. return $this->view->fetch();
  71. }
  72. /**
  73. * 编辑
  74. */
  75. public function edit($ids = null)
  76. {
  77. $row = $this->model->get($ids);
  78. if (!$row) {
  79. $this->error(__('No Results were found'));
  80. }
  81. $adminIds = $this->getDataLimitAdminIds();
  82. if (is_array($adminIds)) {
  83. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  84. $this->error(__('You have no permission'));
  85. }
  86. }
  87. if ($this->request->isPost()) {
  88. $params = $this->request->post("row/a");
  89. if ($params) {
  90. $params = $this->preExcludeFields($params);
  91. $result = false;
  92. Db::startTrans();
  93. try {
  94. //是否采用模型验证
  95. if ($this->modelValidate) {
  96. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  97. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  98. $row->validateFailException(true)->validate($validate);
  99. }
  100. $result = $row->allowField(true)->save($params);
  101. Db::commit();
  102. } catch (ValidateException $e) {
  103. Db::rollback();
  104. $this->error($e->getMessage());
  105. } catch (PDOException $e) {
  106. Db::rollback();
  107. $this->error($e->getMessage());
  108. } catch (Exception $e) {
  109. Db::rollback();
  110. $this->error($e->getMessage());
  111. }
  112. if ($result !== false) {
  113. $this->success();
  114. } else {
  115. $this->error(__('No rows were updated'));
  116. }
  117. }
  118. $this->error(__('Parameter %s can not be empty', ''));
  119. }
  120. $this->view->assign("row", $row);
  121. return $this->view->fetch();
  122. }
  123. /**
  124. * 批量更新
  125. */
  126. public function multi($ids = "")
  127. {
  128. $ids = $ids ? $ids : $this->request->param("ids");
  129. if ($ids) {
  130. if ($this->request->has('params')) {
  131. parse_str($this->request->post("params"), $values);
  132. $values = array_intersect_key($values, array_flip(is_array($this->multiFields) ? $this->multiFields : explode(',', $this->multiFields)));
  133. if ($values || $this->auth->isSuperAdmin()) {
  134. $adminIds = $this->getDataLimitAdminIds();
  135. if (is_array($adminIds)) {
  136. $this->model->where($this->dataLimitField, 'in', $adminIds);
  137. }
  138. $count = 0;
  139. Db::startTrans();
  140. try {
  141. $list = $this->model->where('user_id', 'in', $ids)->select();
  142. foreach ($list as $index => $item) {
  143. $count += $item->allowField(true)->isUpdate(true)->save($values);
  144. }
  145. Db::commit();
  146. } catch (PDOException $e) {
  147. Db::rollback();
  148. $this->error($e->getMessage());
  149. } catch (Exception $e) {
  150. Db::rollback();
  151. $this->error($e->getMessage());
  152. }
  153. if ($count) {
  154. $this->success();
  155. } else {
  156. $this->error(__('No rows were updated'));
  157. }
  158. } else {
  159. $this->error(__('You have no permission'));
  160. }
  161. }
  162. }
  163. $this->error(__('Parameter %s can not be empty', 'ids'));
  164. }
  165. }