User.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <?php
  2. namespace app\admin\controller\user;
  3. use app\admin\model\Category;
  4. use app\common\controller\Backend;
  5. use app\common\library\Auth;
  6. use app\common\model\Area;
  7. use app\common\model\UserObject;
  8. /**
  9. * 会员管理
  10. *
  11. * @icon fa fa-user
  12. */
  13. class User extends Backend
  14. {
  15. protected $relationSearch = true;
  16. protected $searchFields = 'id,username,nickname';
  17. /**
  18. * @var \app\admin\model\User
  19. */
  20. protected $model = null;
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = model('User');
  25. }
  26. /**
  27. * 查看
  28. */
  29. public function index()
  30. {
  31. //设置过滤方法
  32. $this->request->filter(['strip_tags', 'trim']);
  33. if ($this->request->isAjax()) {
  34. //如果发送的来源是Selectpage,则转发到Selectpage
  35. if ($this->request->request('keyField')) {
  36. return $this->selectpage();
  37. }
  38. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  39. $list = $this->model
  40. ->with(['group','category'])
  41. ->where($where)
  42. ->order($sort, $order)
  43. ->paginate($limit);
  44. foreach ($list as $k => $v) {
  45. $v->avatar = $v->avatar ? cdnurl($v->avatar, true) : letter_avatar($v->nickname);
  46. $v->hidden(['password', 'salt']);
  47. }
  48. $result = array("total" => $list->total(), "rows" => $list->items());
  49. return json($result);
  50. }
  51. return $this->view->fetch();
  52. }
  53. /**
  54. * 添加
  55. */
  56. public function add()
  57. {
  58. if ($this->request->isPost()) {
  59. $this->token();
  60. }
  61. return parent::add();
  62. }
  63. /**
  64. * 编辑
  65. */
  66. public function edit($ids = null)
  67. {
  68. if ($this->request->isPost()) {
  69. $this->token();
  70. }
  71. $row = $this->model->get($ids);
  72. $this->modelValidate = true;
  73. if (!$row) {
  74. $this->error(__('No Results were found'));
  75. }
  76. $this->view->assign('groupList', build_select('row[group_id]', \app\admin\model\UserGroup::column('id,name'), $row['group_id'], ['class' => 'form-control selectpicker']));
  77. return parent::edit($ids);
  78. }
  79. /**
  80. * 删除
  81. */
  82. public function del($ids = "")
  83. {
  84. if (!$this->request->isPost()) {
  85. $this->error(__("Invalid parameters"));
  86. }
  87. $ids = $ids ? $ids : $this->request->post("ids");
  88. $row = $this->model->get($ids);
  89. $this->modelValidate = true;
  90. if (!$row) {
  91. $this->error(__('No Results were found'));
  92. }
  93. Auth::instance()->delete($row['id']);
  94. $this->success();
  95. }
  96. /**
  97. * 推荐切换
  98. */
  99. public function change($ids = '')
  100. {
  101. if (!$this->request->isPost()) {
  102. $this->error(__("Invalid parameters"));
  103. }
  104. $ids = $ids ? $ids : $this->request->post("ids");
  105. $row = $this->model->get($ids);
  106. if (!$row) {
  107. $this->error(__('No Results were found'));
  108. }
  109. if($row->is_recommend){
  110. $is_recommend = ['is_recommend'=>0];
  111. $row->save(['recommend_weight'=>'']);
  112. }else{
  113. $is_recommend = ['is_recommend'=>1];
  114. $max = \app\common\model\User::max('recommend_weight');
  115. if($max){
  116. $row->save(['recommend_weight'=>$max+1]);
  117. }else{
  118. $row->save(['recommend_weight'=>1]);
  119. }
  120. }
  121. $this->model->update($is_recommend,['id'=>$ids]);
  122. $this->success("模拟切换成功");
  123. }
  124. /**
  125. * 封禁
  126. */
  127. public function hidden($ids = '')
  128. {
  129. if (!$this->request->isPost()) {
  130. $this->error(__("Invalid parameters"));
  131. }
  132. $ids = $ids ? $ids : $this->request->post("ids");
  133. $row = $this->model->get($ids);
  134. if (!$row) {
  135. $this->error(__('No Results were found'));
  136. }
  137. $row->status = 'hidden';
  138. $row->save($row->status);
  139. $this->success("封禁成功");
  140. }
  141. /**
  142. * 解封
  143. */
  144. public function normal($ids = '')
  145. {
  146. if (!$this->request->isPost()) {
  147. $this->error(__("Invalid parameters"));
  148. }
  149. $ids = $ids ? $ids : $this->request->post("ids");
  150. $row = $this->model->get($ids);
  151. if (!$row) {
  152. $this->error(__('No Results were found'));
  153. }
  154. $row->status = 'normal';
  155. $row->save($row->status);
  156. $this->success("解封成功");
  157. }
  158. /**
  159. * 详情
  160. */
  161. public function detail($ids)
  162. {
  163. $row = $this->model->get($ids);
  164. if (!$row) {
  165. $this->error(__('No Results were found'));
  166. }
  167. if ($this->request->isAjax()) {
  168. $this->success("Ajax请求成功", null, ['id' => $ids]);
  169. }
  170. $detail = $row->toArray();
  171. $detail['gender'] = $detail['gender'] == 0?'女':'男';
  172. $detail['region_province'] = Area::where('id',$detail['region_province'])->value('name');
  173. $detail['region_city'] = Area::where('id',$detail['region_city'])->value('name');
  174. $detail['region_area'] = Area::where('id',$detail['region_area'])->value('name');
  175. $detail['province'] = Area::where('id',$detail['province'])->value('name');
  176. $detail['city'] = Area::where('id',$detail['city'])->value('name');
  177. $detail['area'] = Area::where('id',$detail['area'])->value('name');
  178. if($detail['education']){
  179. $category = Category::where(['id'=>$detail['education']])->value('name');
  180. if($category)$detail['education']=$category;
  181. }
  182. // print_r(Category::where(['id'=>$detail['education']])->value('name'));
  183. // exit();
  184. $detail['user_object'] = UserObject::get(['uid'=>$detail['id']])?UserObject::get(['uid'=>$detail['id']])->toArray():'';
  185. $this->view->assign("row",$detail);
  186. return $this->view->fetch();
  187. }
  188. // /**
  189. // * 详情
  190. // */
  191. // public function detail($ids)
  192. // {
  193. // $row = $this->model->get(['id' => $ids]);
  194. // if (!$row) {
  195. // $this->error(__('No Results were found'));
  196. // }
  197. // if ($this->request->isAjax()) {
  198. // $this->success("Ajax请求成功", null, ['id' => $ids]);
  199. // }
  200. // $this->view->assign("row", $row->toArray());
  201. // return $this->view->fetch();
  202. // }
  203. }