BiddingJoin.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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 BiddingJoin extends Controller
  24. {
  25. /**
  26. * 指定当前数据表
  27. * @var string
  28. */
  29. public $table = 'bidding_join';
  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. $where = [];
  44. if (isset($id) && !empty($id)) {
  45. $where['b.bid'] = $id;
  46. }
  47. $this->title = '招标人员';
  48. $query = $this->_query($this->table)->like('title,phone,mail')->equal('status');
  49. $query->alias('b')
  50. ->join('wechat_user u','u.id=b.uid')
  51. ->join('bidding g','g.id=b.bid')
  52. ->where($where)
  53. ->where('b.buy_status',1)
  54. ->field('b.id id,g.title,b.price price,b.image,b.create_time,u.nickname,u.avatar,u.phone')
  55. ->order('b.id desc')->page();
  56. }
  57. /**
  58. * 数据列表处理
  59. */
  60. protected function _index_page_filter(&$data)
  61. {
  62. // dump($data);die;
  63. }
  64. /**
  65. * 添加系统用户
  66. * @auth true
  67. * @throws \think\Exception
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. * @throws \think\exception\DbException
  71. * @throws \think\exception\PDOException
  72. */
  73. public function add()
  74. {
  75. $this->applyCsrfToken();
  76. $this->_form($this->table, 'form');
  77. }
  78. /**
  79. * 编辑系统用户
  80. * @auth true
  81. * @throws \think\Exception
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. * @throws \think\exception\PDOException
  86. */
  87. public function edit()
  88. {
  89. $this->applyCsrfToken();
  90. $this->_form($this->table, 'form');
  91. }
  92. /**
  93. * 修改用户密码
  94. * @auth true
  95. * @throws \think\Exception
  96. * @throws \think\exception\PDOException
  97. */
  98. public function pass()
  99. {
  100. $this->applyCsrfToken();
  101. if ($this->request->isGet()) {
  102. $this->verify = false;
  103. $this->_form($this->table, 'pass');
  104. } else {
  105. $post = $this->request->post();
  106. if ($post['password'] !== $post['repassword']) {
  107. $this->error('两次输入的密码不一致!');
  108. }
  109. if (Data::save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
  110. $this->success('密码修改成功,下次请使用新密码登录!', '');
  111. } else {
  112. $this->error('密码修改失败,请稍候再试!');
  113. }
  114. }
  115. }
  116. /**
  117. * 表单数据处理
  118. * @param array $data
  119. * @throws \think\db\exception\DataNotFoundException
  120. * @throws \think\db\exception\ModelNotFoundException
  121. * @throws \think\exception\DbException
  122. */
  123. public function _form_filter(&$data)
  124. {
  125. if ($this->request->isPost()) {
  126. // dump($data);die;
  127. // 用户权限处理
  128. // $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  129. // // 用户账号重复检查
  130. // if (isset($data['id'])) unset($data['username']);
  131. // elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  132. // $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  133. // }
  134. } else {
  135. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  136. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  137. }
  138. }
  139. /**
  140. * 禁用系统用户
  141. * @auth true
  142. * @throws \think\Exception
  143. * @throws \think\exception\PDOException
  144. */
  145. public function forbid()
  146. {
  147. if (in_array('10000', explode(',', $this->request->post('id')))) {
  148. $this->error('系统超级账号禁止操作!');
  149. }
  150. $this->applyCsrfToken();
  151. $this->_save($this->table, ['status' => '0']);
  152. }
  153. /**
  154. * 启用系统用户
  155. * @auth true
  156. * @throws \think\Exception
  157. * @throws \think\exception\PDOException
  158. */
  159. public function resume()
  160. {
  161. $this->applyCsrfToken();
  162. $this->_save($this->table, ['status' => '1']);
  163. }
  164. /**
  165. * 删除系统用户
  166. * @auth true
  167. * @throws \think\Exception
  168. * @throws \think\exception\PDOException
  169. */
  170. public function remove()
  171. {
  172. if (in_array('10000', explode(',', $this->request->post('id')))) {
  173. $this->error('系统超级账号禁止删除!');
  174. }
  175. $this->applyCsrfToken();
  176. $this->_delete($this->table);
  177. }
  178. }