Join.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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 Join extends Controller
  24. {
  25. /**
  26. * 指定当前数据表
  27. * @var string
  28. */
  29. public $table = 'wechat_join_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. $id = $this->request->get('id');
  43. $this->title = '众筹人员';
  44. $query = $this->_query($this->table)->like('title,phone,mail')->equal('status');
  45. $query->alias('j')
  46. ->join('wechat_user u','u.id=j.uid')
  47. ->where('j.fid',$id)
  48. ->where('j.buy_status',1)
  49. ->field('j.id id,j.price price,j.number,j.image,j.shouyi,j.touru,j.buy_time,u.nickname,u.avatar,u.phone')
  50. ->order('j.id desc')->page();
  51. }
  52. /**
  53. * 数据列表处理
  54. */
  55. protected function _index_page_filter(&$data)
  56. {
  57. // dump($data);die;
  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. // dump($data);die;
  122. // 用户权限处理
  123. // $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  124. // // 用户账号重复检查
  125. // if (isset($data['id'])) unset($data['username']);
  126. // elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  127. // $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  128. // }
  129. } else {
  130. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  131. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  132. }
  133. }
  134. /**
  135. * 禁用系统用户
  136. * @auth true
  137. * @throws \think\Exception
  138. * @throws \think\exception\PDOException
  139. */
  140. public function forbid()
  141. {
  142. if (in_array('10000', explode(',', $this->request->post('id')))) {
  143. $this->error('系统超级账号禁止操作!');
  144. }
  145. $this->applyCsrfToken();
  146. $this->_save($this->table, ['status' => '0']);
  147. }
  148. /**
  149. * 启用系统用户
  150. * @auth true
  151. * @throws \think\Exception
  152. * @throws \think\exception\PDOException
  153. */
  154. public function resume()
  155. {
  156. $this->applyCsrfToken();
  157. $this->_save($this->table, ['status' => '1']);
  158. }
  159. /**
  160. * 删除系统用户
  161. * @auth true
  162. * @throws \think\Exception
  163. * @throws \think\exception\PDOException
  164. */
  165. public function remove()
  166. {
  167. if (in_array('10000', explode(',', $this->request->post('id')))) {
  168. $this->error('系统超级账号禁止删除!');
  169. }
  170. $this->applyCsrfToken();
  171. $this->_delete($this->table);
  172. }
  173. }