where('id', 'in', $ids) ->column('uri'); $data = []; foreach ($result as $k => $v) { if (empty($v)) { continue; } $data[] = strtolower($v); } return $data; } /** * 获取角色权限 * @param $role_id * @return array */ private static function getRoleAuth($role_id) { return (new RoleAuthIndex()) ->where(['role_id' => $role_id]) ->column('menu_auth_id'); } /** * 获取系统所有权限 * @return array */ private static function getAllAuth() { return (new Auth()) ->where(['del' => 0, 'disable' => 0]) ->column('id'); } /** * 获取用户没有权限uri * @param $role_id * @return array */ public static function getRoleNoneAuthArr($role_id) { return (new Auth()) ->where('id', 'in', self::getRoleNoneAuthIds($role_id)) ->column('uri'); } }