Funding.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  18. /**
  19. * 系统用户管理
  20. * Class User
  21. * @package app\admin\controller
  22. */
  23. class Funding extends Controller
  24. {
  25. /**
  26. * 指定当前数据表
  27. * @var string
  28. */
  29. public $table = 'wechat_crowd_funding';
  30. /**
  31. * 系统用户管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '系统用户管理';
  43. $query = $this->_query($this->table)->like('title,phone,mail')->equal('status');
  44. $query->order('id desc')->page();
  45. }
  46. /**
  47. * 数据列表处理
  48. */
  49. protected function _index_page_filter(&$data)
  50. {
  51. // $level = [
  52. // '0' => '普通客户',
  53. // '1' => '会员',
  54. // ];
  55. foreach($data as &$v) {
  56. $v['images'] = explode('|',$v['image']);
  57. }
  58. }
  59. /**
  60. * 添加系统用户
  61. * @auth true
  62. * @throws \think\Exception
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. * @throws \think\exception\DbException
  66. * @throws \think\exception\PDOException
  67. */
  68. public function add()
  69. {
  70. $this->applyCsrfToken();
  71. $this->_form($this->table, 'form');
  72. }
  73. /**
  74. * 编辑系统用户
  75. * @auth true
  76. * @throws \think\Exception
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\ModelNotFoundException
  79. * @throws \think\exception\DbException
  80. * @throws \think\exception\PDOException
  81. */
  82. public function edit()
  83. {
  84. $this->applyCsrfToken();
  85. $this->_form($this->table, 'form');
  86. }
  87. /**
  88. * 修改用户密码
  89. * @auth true
  90. * @throws \think\Exception
  91. * @throws \think\exception\PDOException
  92. */
  93. public function pass()
  94. {
  95. $this->applyCsrfToken();
  96. if ($this->request->isGet()) {
  97. $this->verify = false;
  98. $this->_form($this->table, 'pass');
  99. } else {
  100. $post = $this->request->post();
  101. if ($post['password'] !== $post['repassword']) {
  102. $this->error('两次输入的密码不一致!');
  103. }
  104. if (Data::save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
  105. $this->success('密码修改成功,下次请使用新密码登录!', '');
  106. } else {
  107. $this->error('密码修改失败,请稍候再试!');
  108. }
  109. }
  110. }
  111. /**
  112. * 表单数据处理
  113. * @param array $data
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\ModelNotFoundException
  116. * @throws \think\exception\DbException
  117. */
  118. public function _form_filter(&$data)
  119. {
  120. if ($this->request->isPost()) {
  121. // 用户权限处理
  122. // $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  123. // // 用户账号重复检查
  124. // if (isset($data['id'])) unset($data['username']);
  125. // elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  126. // $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  127. // }
  128. } else {
  129. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  130. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  131. }
  132. }
  133. /**
  134. * 禁用系统用户
  135. * @auth true
  136. * @throws \think\Exception
  137. * @throws \think\exception\PDOException
  138. */
  139. public function forbid()
  140. {
  141. if (in_array('10000', explode(',', $this->request->post('id')))) {
  142. $this->error('系统超级账号禁止操作!');
  143. }
  144. $this->applyCsrfToken();
  145. $this->_save($this->table, ['status' => '0']);
  146. }
  147. /**
  148. * 启用系统用户
  149. * @auth true
  150. * @throws \think\Exception
  151. * @throws \think\exception\PDOException
  152. */
  153. public function resume()
  154. {
  155. $this->applyCsrfToken();
  156. $this->_save($this->table, ['status' => '1']);
  157. }
  158. /**
  159. * 删除系统用户
  160. * @auth true
  161. * @throws \think\Exception
  162. * @throws \think\exception\PDOException
  163. */
  164. public function remove()
  165. {
  166. if (in_array('10000', explode(',', $this->request->post('id')))) {
  167. $this->error('系统超级账号禁止删除!');
  168. }
  169. $this->applyCsrfToken();
  170. $this->_delete($this->table);
  171. }
  172. }