Uuser.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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. $this->level = $level;
  35. $query = $this->_query($this->table)->where($where)->like('username,mobile')->equal('is_deleted');
  36. $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
  37. }
  38. /**
  39. * 数据列表处理
  40. */
  41. protected function _index_page_filter(&$data)
  42. {
  43. $level = [
  44. '0' => '业主',
  45. '1' => '德叔客户',
  46. '2' => '分销客户',
  47. ];
  48. foreach($data as &$v) {
  49. $v['levels'] = $v['level'];
  50. $v['level'] = $level[$v['level']];
  51. //
  52. // $len = strlen($v['content']);
  53. // $str = '';
  54. // $num = ceil($len/20);
  55. // for ($i=0;$i<$num;$i++) {
  56. // if ($i==0) {
  57. // $str = substr($v['content'],0,20);
  58. //
  59. // } else {
  60. // $str = $str. substr($v['content'],$i*20,$i*20+20).'<br />';
  61. // }
  62. //
  63. // }
  64. // $v['content'] = $str;
  65. }
  66. }
  67. /**
  68. * 添加系统用户
  69. * @auth true
  70. * @throws \think\Exception
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. * @throws \think\exception\PDOException
  75. */
  76. public function add()
  77. {
  78. $this->applyCsrfToken();
  79. $this->_form($this->table, 'form');
  80. }
  81. /**
  82. * 编辑系统用户
  83. * @auth true
  84. * @throws \think\Exception
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. * @throws \think\exception\DbException
  88. * @throws \think\exception\PDOException
  89. */
  90. public function edit()
  91. {
  92. $this->applyCsrfToken();
  93. $this->_form($this->table, 'form');
  94. }
  95. /**
  96. * 编辑系统用户修改其他信息
  97. * @auth true
  98. * @throws \think\Exception
  99. * @throws \think\db\exception\DataNotFoundException
  100. * @throws \think\db\exception\ModelNotFoundException
  101. * @throws \think\exception\DbException
  102. * @throws \think\exception\PDOException
  103. */
  104. public function edits()
  105. {
  106. $this->applyCsrfToken();
  107. if ($this->request->isGet()) {
  108. $this->verify = false;
  109. $this->_form($this->table, 'edits');
  110. } else {
  111. $post = $this->request->post();
  112. $data = [];
  113. if (isset($post['pwd']) && !empty($post['pwd'])) {
  114. if ($post['pwd'] != $post['repassword']) return $this->error('两次密码输入不一致');
  115. $data['pwd'] = md5(md5($post['pwd']));
  116. }
  117. $data['username'] = $post['username'];
  118. $data['mobile'] = $post['mobile'];
  119. $data['avatar'] = $post['avatar'];
  120. $data['content'] = $post['content'];
  121. $upd = Db::name('user')->where('id',$post['id'])->update($data);
  122. if ($upd) {
  123. return $this->success('编辑成功');
  124. } else {
  125. return $this->error('编辑失败');
  126. }
  127. // $upd = Db::name('where')
  128. }
  129. }
  130. /**
  131. * 编辑系统用户修改其他信息
  132. * @auth true
  133. * @throws \think\Exception
  134. * @throws \think\db\exception\DataNotFoundException
  135. * @throws \think\db\exception\ModelNotFoundException
  136. * @throws \think\exception\DbException
  137. * @throws \think\exception\PDOException
  138. */
  139. public function beizhu()
  140. {
  141. $this->applyCsrfToken();
  142. if ($this->request->isGet()) {
  143. $this->verify = false;
  144. $this->_form($this->table, 'beizhu');
  145. } else {
  146. $post = $this->request->post();
  147. $data['content'] = $post['content'];
  148. $upd = Db::name('user')->where('id',$post['id'])->update($data);
  149. if ($upd) {
  150. return $this->success('编辑成功');
  151. } else {
  152. return $this->error('编辑失败');
  153. }
  154. // $upd = Db::name('where')
  155. }
  156. }
  157. /**
  158. * 修改用户密码
  159. * @auth true
  160. * @throws \think\Exception
  161. * @throws \think\exception\PDOException
  162. */
  163. public function pass()
  164. {
  165. $this->applyCsrfToken();
  166. if ($this->request->isGet()) {
  167. $this->verify = false;
  168. $this->_form($this->table, 'pass');
  169. } else {
  170. $post = $this->request->post();
  171. $data = [
  172. 'uid' => $post['id'],
  173. 'video' => $post['logo'],
  174. 'image' => $post['image'],
  175. 'create_time' => date('Y-m-d H:i',time()),
  176. ];
  177. $add = Db::name('user_image')->insert($data);
  178. if ($add) {
  179. $this->success('上传成功', '');
  180. } else {
  181. $this->error('上传成功');
  182. }
  183. }
  184. }
  185. /**
  186. * 表单数据处理
  187. * @param array $data
  188. * @throws \think\db\exception\DataNotFoundException
  189. * @throws \think\db\exception\ModelNotFoundException
  190. * @throws \think\exception\DbException
  191. */
  192. public function _form_filter(&$data)
  193. {
  194. $type = $this->request->get('type');
  195. $data['type'] = $type;
  196. if ($this->request->isPost()) {
  197. if ($data['integral'] == 0) {
  198. $this->error("请输入要修改数值");
  199. }
  200. $user = Db::name('user')->where('id',$data['id'])->find();
  201. if (substr($data['integral'],0,1)=='-') {
  202. $integralStr = $data['integral'];
  203. $integral = $user['integral']-abs($data['integral']);
  204. if ($integral<0) $integral = 0;
  205. } else {
  206. $integralStr = '+'.$data['integral'];
  207. $integral = $user['integral'] + $data['integral'];
  208. }
  209. $data['integral'] = $integral;
  210. $ins = [
  211. 'uid' => $data['id'],
  212. 'resan' => $data['resan'],
  213. 'create_time' => date('Y-m-d H:i',time()),
  214. 'integral' => $integralStr,
  215. ];
  216. Db::name('user_integral_history')->insert($ins);
  217. // 用户权限处理
  218. $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  219. // 用户账号重复检查
  220. if (isset($data['id'])) unset($data['username']);
  221. elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  222. $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  223. }
  224. } else {
  225. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  226. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  227. }
  228. }
  229. /**
  230. * 禁用系统用户
  231. * @auth true
  232. * @throws \think\Exception
  233. * @throws \think\exception\PDOException
  234. */
  235. public function forbid()
  236. {
  237. if (in_array('10000', explode(',', $this->request->post('id')))) {
  238. $this->error('系统超级账号禁止操作!');
  239. }
  240. $this->applyCsrfToken();
  241. $this->_save($this->table, ['status' => '0']);
  242. }
  243. /**
  244. * 启用系统用户
  245. * @auth true
  246. * @throws \think\Exception
  247. * @throws \think\exception\PDOException
  248. */
  249. public function resume()
  250. {
  251. $this->applyCsrfToken();
  252. $this->_save($this->table, ['status' => '1']);
  253. }
  254. /**
  255. * 删除系统用户
  256. * @auth true
  257. * @throws \think\Exception
  258. * @throws \think\exception\PDOException
  259. */
  260. public function remove()
  261. {
  262. $id = $this->request->post('id');
  263. $del = Db::name('user')->where('id',$id)->delete();
  264. if ($del) {
  265. Db::name('user_appointment')->where('uid',$id)->delete();
  266. Db::name('user_weixiu_baobei')->where('uid',$id)->delete();
  267. return $this->success('删除成功');
  268. } else {
  269. return $this->error('删除失败');
  270. }
  271. if (in_array('10000', explode(',', $this->request->post('id')))) {
  272. $this->error('系统超级账号禁止删除!');
  273. }
  274. $this->applyCsrfToken();
  275. $this->_delete($this->table);
  276. }
  277. }