User.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\UserService;
  4. use think\admin\Controller;
  5. /**
  6. * 普通用户管理
  7. * Class User
  8. * @package app\data\controller
  9. */
  10. class User extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. private $table = 'DataUser';
  17. /**
  18. * 普通用户管理
  19. * @auth true
  20. * @menu true
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. */
  25. public function index()
  26. {
  27. $this->title = '普通用户管理';
  28. $query = $this->_query($this->table);
  29. $query->like('phone,username|nickname#username');
  30. $query->order('id desc')->equal('status')->dateBetween('create_at')->page();
  31. }
  32. /**
  33. * 数据列表处理
  34. * @param array $data
  35. */
  36. protected function _page_filter(array &$data)
  37. {
  38. UserService::instance()->buildByUid($data, 'pid1', 'fromer');
  39. }
  40. /**
  41. * 修改用户状态
  42. * @auth true
  43. * @throws \think\db\exception\DbException
  44. */
  45. public function state()
  46. {
  47. $this->_save($this->table, $this->_vali([
  48. 'status.in:0,1' => '状态值范围异常!',
  49. 'status.require' => '状态值不能为空!',
  50. ]));
  51. }
  52. }