Users.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?php
  2. namespace app\admin\controller;
  3. use library\Controller;
  4. use library\tools\Data;
  5. use think\Db;
  6. /**
  7. * 系统用户管理
  8. * Class Users
  9. * @package app\admin\controller
  10. */
  11. class Users extends Controller
  12. {
  13. /**
  14. * 指定当前数据表
  15. * @var string
  16. */
  17. public $table = 'user';
  18. /**
  19. * 系统用户管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $level = $this->request->get('level');
  31. if (!$level) $level = 0;
  32. $where['level'] = $level;
  33. $this->title = '系统用户管理';
  34. $query = $this->_query($this->table)->where($where)->like('username,mobile')->equal('is_deleted');
  35. $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
  36. }
  37. /**
  38. * 数据列表处理
  39. */
  40. protected function _index_page_filter(&$data)
  41. {
  42. $level = [
  43. '0' => '业主',
  44. '1' => '德叔客户',
  45. '2' => '分销客户',
  46. ];
  47. foreach($data as &$v) {
  48. $v['level'] = $level[$v['level']];
  49. }
  50. }
  51. /**
  52. * 添加系统用户
  53. * @auth true
  54. * @throws \think\Exception
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. * @throws \think\exception\PDOException
  59. */
  60. public function add()
  61. {
  62. $this->applyCsrfToken();
  63. $this->_form($this->table, 'form');
  64. }
  65. /**
  66. * 编辑系统用户
  67. * @auth true
  68. * @throws \think\Exception
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. * @throws \think\exception\DbException
  72. * @throws \think\exception\PDOException
  73. */
  74. public function edit()
  75. {
  76. $this->applyCsrfToken();
  77. $this->_form($this->table, 'form');
  78. }
  79. /**
  80. * 修改用户密码
  81. * @auth true
  82. * @throws \think\Exception
  83. * @throws \think\exception\PDOException
  84. */
  85. public function pass()
  86. {
  87. $this->applyCsrfToken();
  88. if ($this->request->isGet()) {
  89. $this->verify = false;
  90. $this->_form($this->table, 'pass');
  91. } else {
  92. $post = $this->request->post();
  93. $data = [
  94. 'uid' => $post['id'],
  95. 'video' => $post['logo'],
  96. 'image' => $post['image'],
  97. 'create_time' => date('Y-m-d H:i',time()),
  98. ];
  99. $add = Db::name('user_image')->insert($data);
  100. if ($add) {
  101. $this->success('上传成功', '');
  102. } else {
  103. $this->error('上传成功');
  104. }
  105. }
  106. }
  107. /**
  108. * 表单数据处理
  109. * @param array $data
  110. * @throws \think\db\exception\DataNotFoundException
  111. * @throws \think\db\exception\ModelNotFoundException
  112. * @throws \think\exception\DbException
  113. */
  114. public function _form_filter(&$data)
  115. {
  116. $type = $this->request->get('type');
  117. $data['type'] = $type;
  118. if ($this->request->isPost()) {
  119. if ($data['integral'] == 0) {
  120. $this->error("请输入要修改数值");
  121. }
  122. $user = Db::name('user')->where('id',$data['id'])->find();
  123. if (substr($data['integral'],0,1)=='-') {
  124. $integralStr = $data['integral'];
  125. $integral = $user['integral']-abs($data['integral']);
  126. if ($integral<0) $integral = 0;
  127. } else {
  128. $integralStr = '+'.$data['integral'];
  129. $integral = $user['integral'] + $data['integral'];
  130. }
  131. $data['integral'] = $integral;
  132. $ins = [
  133. 'uid' => $data['id'],
  134. 'resan' => $data['resan'],
  135. 'create_time' => date('Y-m-d H:i',time()),
  136. 'integral' => $integralStr,
  137. ];
  138. Db::name('user_integral_history')->insert($ins);
  139. // 用户权限处理
  140. $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  141. // 用户账号重复检查
  142. if (isset($data['id'])) unset($data['username']);
  143. elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  144. $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  145. }
  146. } else {
  147. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  148. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  149. }
  150. }
  151. /**
  152. * 禁用系统用户
  153. * @auth true
  154. * @throws \think\Exception
  155. * @throws \think\exception\PDOException
  156. */
  157. public function forbid()
  158. {
  159. if (in_array('10000', explode(',', $this->request->post('id')))) {
  160. $this->error('系统超级账号禁止操作!');
  161. }
  162. $this->applyCsrfToken();
  163. $this->_save($this->table, ['status' => '0']);
  164. }
  165. /**
  166. * 启用系统用户
  167. * @auth true
  168. * @throws \think\Exception
  169. * @throws \think\exception\PDOException
  170. */
  171. public function resume()
  172. {
  173. $this->applyCsrfToken();
  174. $this->_save($this->table, ['status' => '1']);
  175. }
  176. /**
  177. * 删除系统用户
  178. * @auth true
  179. * @throws \think\Exception
  180. * @throws \think\exception\PDOException
  181. */
  182. public function remove()
  183. {
  184. if (in_array('10000', explode(',', $this->request->post('id')))) {
  185. $this->error('系统超级账号禁止删除!');
  186. }
  187. $this->applyCsrfToken();
  188. $this->_delete($this->table);
  189. }
  190. }