Recovery.php 5.9 KB

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