AdminOauthController.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\user\controller;
  12. use cmf\controller\AdminBaseController;
  13. use think\Db;
  14. class AdminOauthController extends AdminBaseController
  15. {
  16. /**
  17. * 后台第三方用户列表
  18. * @adminMenu(
  19. * 'name' => '第三方用户',
  20. * 'parent' => 'user/AdminIndex/default1',
  21. * 'display'=> true,
  22. * 'hasView'=> true,
  23. * 'order' => 10000,
  24. * 'icon' => '',
  25. * 'remark' => '第三方用户',
  26. * 'param' => ''
  27. * )
  28. */
  29. public function index()
  30. {
  31. $content = hook_one('user_admin_oauth_index_view');
  32. if (!empty($content)) {
  33. return $content;
  34. }
  35. $lists = Db::name('third_party_user')->field('a.*,u.user_nicename,u.sex,u.avatar')
  36. ->alias('a')
  37. ->join('__USER__ u', 'a.user_id = u.id')
  38. ->where("status", 1)
  39. ->order("create_time DESC")
  40. ->paginate(10);
  41. // 获取分页显示
  42. $page = $lists->render();
  43. $this->assign('lists', $lists);
  44. $this->assign('page', $page);
  45. // 渲染模板输出
  46. return $this->fetch();
  47. }
  48. /**
  49. * 后台删除第三方用户绑定
  50. * @adminMenu(
  51. * 'name' => '删除第三方用户绑定',
  52. * 'parent' => 'index',
  53. * 'display'=> false,
  54. * 'hasView'=> false,
  55. * 'order' => 10000,
  56. * 'icon' => '',
  57. * 'remark' => '删除第三方用户绑定',
  58. * 'param' => ''
  59. * )
  60. */
  61. public function delete()
  62. {
  63. $id = input('param.id', 0, 'intval');
  64. if (empty($id)) {
  65. $this->error('非法数据!');
  66. }
  67. Db::name("third_party_user")->where("id", $id)->delete();
  68. $this->success("删除成功!", "admin_oauth/index");
  69. }
  70. }