Uuser.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <?php
  2. namespace app\admin\controller;
  3. use library\Controller;
  4. use library\tools\Data;
  5. use think\Db;
  6. /**
  7. * 系统用户管理
  8. * Class Uuser
  9. * @package app\admin\controller
  10. */
  11. class Uuser 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['levels'] = $v['level'];
  49. $v['level'] = $level[$v['level']];
  50. //
  51. // $len = strlen($v['content']);
  52. // $str = '';
  53. // $num = ceil($len/20);
  54. // for ($i=0;$i<$num;$i++) {
  55. // if ($i==0) {
  56. // $str = substr($v['content'],0,20);
  57. //
  58. // } else {
  59. // $str = $str. substr($v['content'],$i*20,$i*20+20).'<br />';
  60. // }
  61. //
  62. // }
  63. // $v['content'] = $str;
  64. }
  65. }
  66. /**
  67. * 添加系统用户
  68. * @auth true
  69. * @throws \think\Exception
  70. * @throws \think\db\exception\DataNotFoundException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @throws \think\exception\DbException
  73. * @throws \think\exception\PDOException
  74. */
  75. public function add()
  76. {
  77. $this->applyCsrfToken();
  78. $this->_form($this->table, 'form');
  79. }
  80. /**
  81. * 编辑系统用户
  82. * @auth true
  83. * @throws \think\Exception
  84. * @throws \think\db\exception\DataNotFoundException
  85. * @throws \think\db\exception\ModelNotFoundException
  86. * @throws \think\exception\DbException
  87. * @throws \think\exception\PDOException
  88. */
  89. public function edit()
  90. {
  91. $this->applyCsrfToken();
  92. $this->_form($this->table, 'form');
  93. }
  94. /**
  95. * 编辑系统用户修改其他信息
  96. * @auth true
  97. * @throws \think\Exception
  98. * @throws \think\db\exception\DataNotFoundException
  99. * @throws \think\db\exception\ModelNotFoundException
  100. * @throws \think\exception\DbException
  101. * @throws \think\exception\PDOException
  102. */
  103. public function edits()
  104. {
  105. $this->applyCsrfToken();
  106. if ($this->request->isGet()) {
  107. $this->verify = false;
  108. $this->_form($this->table, 'edits');
  109. } else {
  110. $post = $this->request->post();
  111. $data = [];
  112. if (isset($post['pwd']) && !empty($post['pwd'])) {
  113. if ($post['pwd'] != $post['repassword']) return $this->error('两次密码输入不一致');
  114. $data['pwd'] = md5(md5($post['pwd']));
  115. }
  116. $data['username'] = $post['username'];
  117. $data['mobile'] = $post['mobile'];
  118. $data['avatar'] = $post['avatar'];
  119. $data['content'] = $post['content'];
  120. $upd = Db::name('user')->where('id',$post['id'])->update($data);
  121. if ($upd) {
  122. return $this->success('编辑成功');
  123. } else {
  124. return $this->error('编辑失败');
  125. }
  126. // $upd = Db::name('where')
  127. }
  128. }
  129. /**
  130. * 修改用户密码
  131. * @auth true
  132. * @throws \think\Exception
  133. * @throws \think\exception\PDOException
  134. */
  135. public function pass()
  136. {
  137. $this->applyCsrfToken();
  138. if ($this->request->isGet()) {
  139. $this->verify = false;
  140. $this->_form($this->table, 'pass');
  141. } else {
  142. $post = $this->request->post();
  143. $data = [
  144. 'uid' => $post['id'],
  145. 'video' => $post['logo'],
  146. 'image' => $post['image'],
  147. 'create_time' => date('Y-m-d H:i',time()),
  148. ];
  149. $add = Db::name('user_image')->insert($data);
  150. if ($add) {
  151. $this->success('上传成功', '');
  152. } else {
  153. $this->error('上传成功');
  154. }
  155. }
  156. }
  157. /**
  158. * 表单数据处理
  159. * @param array $data
  160. * @throws \think\db\exception\DataNotFoundException
  161. * @throws \think\db\exception\ModelNotFoundException
  162. * @throws \think\exception\DbException
  163. */
  164. public function _form_filter(&$data)
  165. {
  166. $type = $this->request->get('type');
  167. $data['type'] = $type;
  168. if ($this->request->isPost()) {
  169. if ($data['integral'] == 0) {
  170. $this->error("请输入要修改数值");
  171. }
  172. $user = Db::name('user')->where('id',$data['id'])->find();
  173. if (substr($data['integral'],0,1)=='-') {
  174. $integralStr = $data['integral'];
  175. $integral = $user['integral']-abs($data['integral']);
  176. if ($integral<0) $integral = 0;
  177. } else {
  178. $integralStr = '+'.$data['integral'];
  179. $integral = $user['integral'] + $data['integral'];
  180. }
  181. $data['integral'] = $integral;
  182. $ins = [
  183. 'uid' => $data['id'],
  184. 'resan' => $data['resan'],
  185. 'create_time' => date('Y-m-d H:i',time()),
  186. 'integral' => $integralStr,
  187. ];
  188. Db::name('user_integral_history')->insert($ins);
  189. // 用户权限处理
  190. $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  191. // 用户账号重复检查
  192. if (isset($data['id'])) unset($data['username']);
  193. elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  194. $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  195. }
  196. } else {
  197. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  198. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  199. }
  200. }
  201. /**
  202. * 禁用系统用户
  203. * @auth true
  204. * @throws \think\Exception
  205. * @throws \think\exception\PDOException
  206. */
  207. public function forbid()
  208. {
  209. if (in_array('10000', explode(',', $this->request->post('id')))) {
  210. $this->error('系统超级账号禁止操作!');
  211. }
  212. $this->applyCsrfToken();
  213. $this->_save($this->table, ['status' => '0']);
  214. }
  215. /**
  216. * 启用系统用户
  217. * @auth true
  218. * @throws \think\Exception
  219. * @throws \think\exception\PDOException
  220. */
  221. public function resume()
  222. {
  223. $this->applyCsrfToken();
  224. $this->_save($this->table, ['status' => '1']);
  225. }
  226. /**
  227. * 删除系统用户
  228. * @auth true
  229. * @throws \think\Exception
  230. * @throws \think\exception\PDOException
  231. */
  232. public function remove()
  233. {
  234. if (in_array('10000', explode(',', $this->request->post('id')))) {
  235. $this->error('系统超级账号禁止删除!');
  236. }
  237. $this->applyCsrfToken();
  238. $this->_delete($this->table);
  239. }
  240. }