From 81c8e779f9a1b8087a9b567b8e5fe451fed099e0 Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Mon, 12 Oct 2020 15:30:10 +0800 Subject: [PATCH] =?UTF-8?q?modified=20=E4=BF=AE=E5=A4=8D=E4=B8=AD=E9=97=B4?= =?UTF-8?q?=E4=BB=B6BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/middleware/AdminPermission.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/middleware/AdminPermission.php b/app/middleware/AdminPermission.php index e0deb82..7bdbac1 100644 --- a/app/middleware/AdminPermission.php +++ b/app/middleware/AdminPermission.php @@ -24,7 +24,7 @@ class AdminPermission { public function handle($request, \Closure $next): Response { $userInfo = $request->API_ADMIN_USER_INFO; - if (!$this->checkAuth($userInfo['id'], $request->path())) { + if (!$this->checkAuth($userInfo['id'], $request->pathinfo())) { return json([ 'code' => ReturnCode::INVALID, 'msg' => '非常抱歉,您没有权限这么做!', @@ -66,7 +66,7 @@ class AdminPermission { * @author zhaoxiang */ private function getAuth($uid) { - $groups = AdminAuthGroupAccess::get(['uid' => $uid]); + $groups = (new AdminAuthGroupAccess())->where('uid', $uid)->find(); if (isset($groups) && $groups->group_id) { $openGroup = (new AdminAuthGroup())->whereIn('id', $groups->group_id)->where(['status' => 1])->select(); if (isset($openGroup)) {