User.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace app\admin\controller\user;
  3. use app\common\controller\Backend;
  4. use app\common\library\Auth;
  5. use think\Db;
  6. use think\exception\PDOException;
  7. use think\exception\ValidateException;
  8. use app\admin\model\LmtUserLevelLog;
  9. /**
  10. * 会员管理
  11. *
  12. * @icon fa fa-user
  13. */
  14. class User extends Backend
  15. {
  16. protected $relationSearch = true;
  17. protected $searchFields = 'id,username,nickname';
  18. /**
  19. * @var \app\admin\model\User
  20. */
  21. protected $model = null;
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $this->model = model('User');
  26. }
  27. /**
  28. * 查看
  29. */
  30. public function index()
  31. {
  32. //设置过滤方法
  33. $this->request->filter(['strip_tags', 'trim']);
  34. if ($this->request->isAjax()) {
  35. //如果发送的来源是Selectpage,则转发到Selectpage
  36. if ($this->request->request('keyField')) {
  37. return $this->selectpage();
  38. }
  39. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  40. $list = $this->model
  41. ->with('group')
  42. ->where($where)
  43. ->order($sort, $order)
  44. ->paginate($limit);
  45. foreach ($list as $k => $v) {
  46. $v->avatar = $v->avatar ? cdnurl($v->avatar, true) : letter_avatar($v->nickname);
  47. $v->hidden(['password', 'salt']);
  48. }
  49. $result = array("total" => $list->total(), "rows" => $list->items());
  50. return json($result);
  51. }
  52. return $this->view->fetch();
  53. }
  54. /**
  55. * 添加
  56. */
  57. public function add()
  58. {
  59. if ($this->request->isPost()) {
  60. $this->token();
  61. }
  62. return parent::add();
  63. }
  64. /**
  65. * 编辑
  66. */
  67. public function edit($ids = null)
  68. {
  69. if ($this->request->isPost()) {
  70. $this->token();
  71. }
  72. $row = $this->model->get($ids);
  73. $this->modelValidate = true;
  74. if (!$row) {
  75. $this->error(__('No Results were found'));
  76. }
  77. $this->view->assign('groupList', build_select('row[group_id]', \app\admin\model\UserGroup::column('id,name'), $row['group_id'], ['class' => 'form-control selectpicker']));
  78. return parent::edit($ids);
  79. }
  80. /**
  81. * 删除
  82. */
  83. public function del($ids = "")
  84. {
  85. if (!$this->request->isPost()) {
  86. $this->error(__("Invalid parameters"));
  87. }
  88. $ids = $ids ? $ids : $this->request->post("ids");
  89. $row = $this->model->get($ids);
  90. $this->modelValidate = true;
  91. if (!$row) {
  92. $this->error(__('No Results were found'));
  93. }
  94. Auth::instance()->delete($row['id']);
  95. $this->success();
  96. }
  97. public function recommend()
  98. {
  99. }
  100. }