Userweixiu.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. namespace app\admin\controller;
  3. use library\Controller;
  4. use library\tools\Data;
  5. use think\Db;
  6. /**
  7. * 维修和报备
  8. * Class Userimage
  9. * @package app\admin\controller
  10. */
  11. class Userweixiu extends Controller
  12. {
  13. /**
  14. * 指定当前数据表
  15. * @var string
  16. */
  17. public $table = 'user_weixiu_baobei';
  18. /**
  19. * 系统用户管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $where= [];
  31. $id = $this->request->get('id');
  32. $type = $this->request->get('type');
  33. $this->uid=$id;
  34. $where['uid'] = $id;
  35. $where['type'] = $type;
  36. if ($type==3) {
  37. unset($where['uid']);
  38. $where['type'] = 1;
  39. }
  40. // $where['type'] = $type;
  41. if ($type==4) {
  42. unset($where['uid']);
  43. $where['type'] = 2;
  44. }
  45. $this->title = '维修与报备';
  46. $query = $this->_query($this->table)->where($where)->like('name,phone,status');
  47. $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
  48. }
  49. /**
  50. * 数据列表处理
  51. */
  52. protected function _index_page_filter(&$data)
  53. {
  54. foreach ($data as &$v) {
  55. $user = Db::name('user')->where('id',$v['uid'])->find();
  56. $v['username'] = $user['username'];
  57. // $v[''] = $user['mobile']
  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. * @param array $data
  91. * @throws \think\db\exception\DataNotFoundException
  92. * @throws \think\db\exception\ModelNotFoundException
  93. * @throws \think\exception\DbException
  94. */
  95. public function _form_filter(&$data)
  96. {
  97. $uid = $this->request->get('uid');
  98. if (isset($uid)) $data['uid'] = $uid;
  99. if ($this->request->isPost()) {
  100. if (empty($data['create_time'])) $data['create_time'] = date('Y-m-d H:i:s',time());
  101. // // 用户权限处理
  102. // $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  103. // // 用户账号重复检查
  104. // if (isset($data['id'])) unset($data['username']);
  105. // elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  106. // $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  107. // }
  108. } else {
  109. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  110. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  111. }
  112. }
  113. /**
  114. * 禁用系统用户
  115. * @auth true
  116. * @throws \think\Exception
  117. * @throws \think\exception\PDOException
  118. */
  119. public function forbid()
  120. {
  121. if (in_array('10000', explode(',', $this->request->post('id')))) {
  122. $this->error('系统超级账号禁止操作!');
  123. }
  124. $this->applyCsrfToken();
  125. $this->_save($this->table, ['status' => '2']);
  126. }
  127. /**
  128. * 启用系统用户
  129. * @auth true
  130. * @throws \think\Exception
  131. * @throws \think\exception\PDOException
  132. */
  133. public function resume()
  134. {
  135. $data = $this->request->get();
  136. $this->applyCsrfToken();
  137. $this->_save($this->table, ['status' => '1']);
  138. }
  139. /**
  140. * 删除系统用户
  141. * @auth true
  142. * @throws \think\Exception
  143. * @throws \think\exception\PDOException
  144. */
  145. public function remove()
  146. {
  147. if (in_array('10000', explode(',', $this->request->post('id')))) {
  148. $this->error('系统超级账号禁止删除!');
  149. }
  150. $this->applyCsrfToken();
  151. $this->_delete($this->table);
  152. }
  153. }