| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: Powerless < wzxaini9@gmail.com>
- // +----------------------------------------------------------------------
- namespace app\user\controller;
- use app\user\model\ThirdPartyUserModel;
- use cmf\controller\AdminBaseController;
- class AdminOauthController extends AdminBaseController
- {
- /**
- * 后台第三方用户列表
- * @adminMenu(
- * 'name' => '第三方用户',
- * 'parent' => 'user/AdminIndex/default1',
- * 'display'=> true,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '第三方用户',
- * 'param' => ''
- * )
- */
- public function index()
- {
- $content = hook_one('user_admin_oauth_index_view');
- if (!empty($content)) {
- return $content;
- }
- $lists = ThirdPartyUserModel::field('a.*,u.user_nickname,u.sex,u.avatar')
- ->alias('a')
- ->join('user u', 'a.user_id = u.id')
- ->where("status", 1)
- ->order("create_time DESC")
- ->paginate(10);
- // 获取分页显示
- $page = $lists->render();
- $this->assign('lists', $lists);
- $this->assign('page', $page);
- // 渲染模板输出
- return $this->fetch();
- }
- /**
- * 后台删除第三方用户绑定
- * @adminMenu(
- * 'name' => '删除第三方用户绑定',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '删除第三方用户绑定',
- * 'param' => ''
- * )
- */
- public function delete()
- {
- if ($this->request->isPost()) {
- $id = input('param.id', 0, 'intval');
- if (empty($id)) {
- $this->error('非法数据!');
- }
- ThirdPartyUserModel::where("id", $id)->delete();
- $this->success("删除成功!", url('AdminOauth/index'));
- }
- }
- }
|