LogisticsCar.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 LogisticsCar extends Controller
  24. {
  25. /**
  26. * 指定当前数据表
  27. * @var string
  28. */
  29. public $table = 'logistics_car';
  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. //
  57. // $v['images'] = explode('|',$v['image']);
  58. // }
  59. }
  60. /**
  61. * 添加系统用户
  62. * @auth true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function add()
  70. {
  71. $this->applyCsrfToken();
  72. $this->_form($this->table, 'form');
  73. }
  74. /**
  75. * 编辑系统用户
  76. * @auth true
  77. * @throws \think\Exception
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. * @throws \think\exception\PDOException
  82. */
  83. public function edit()
  84. {
  85. $this->applyCsrfToken();
  86. $this->_form($this->table, 'form');
  87. }
  88. /**
  89. * 修改用户密码
  90. * @auth true
  91. * @throws \think\Exception
  92. * @throws \think\exception\PDOException
  93. */
  94. public function pass()
  95. {
  96. $this->applyCsrfToken();
  97. if ($this->request->isGet()) {
  98. $this->verify = false;
  99. $this->_form($this->table, 'pass');
  100. } else {
  101. $post = $this->request->post();
  102. if ($post['password'] !== $post['repassword']) {
  103. $this->error('两次输入的密码不一致!');
  104. }
  105. if (Data::save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
  106. $this->success('密码修改成功,下次请使用新密码登录!', '');
  107. } else {
  108. $this->error('密码修改失败,请稍候再试!');
  109. }
  110. }
  111. }
  112. /**
  113. * 表单数据处理
  114. * @param array $data
  115. * @throws \think\db\exception\DataNotFoundException
  116. * @throws \think\db\exception\ModelNotFoundException
  117. * @throws \think\exception\DbException
  118. */
  119. public function _form_filter(&$data)
  120. {
  121. if ($this->request->isPost()) {
  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. }