From 9e9e5fa0e8db1d39d6daf3728c7aff9b207b3bff Mon Sep 17 00:00:00 2001 From: eggmanQQQ <3671373519@qq.com> Date: Wed, 30 Oct 2024 14:09:05 +0800 Subject: [PATCH] =?UTF-8?q?1.0.19=20feat=EF=BC=9AVip=20=E6=9D=83=E9=99=90?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/Noble/View/VIPCenterViewController.m | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/YuMi/Modules/YMMine/View/Noble/View/VIPCenterViewController.m b/YuMi/Modules/YMMine/View/Noble/View/VIPCenterViewController.m index 5a710acb..8c9a5610 100644 --- a/YuMi/Modules/YMMine/View/Noble/View/VIPCenterViewController.m +++ b/YuMi/Modules/YMMine/View/Noble/View/VIPCenterViewController.m @@ -634,7 +634,12 @@ UICollectionViewDataSource> __block NSMutableArray *tempArray = @[].mutableCopy; [self.vipIdentificationInfoArray enumerateObjectsUsingBlock:^(NobleAuthInfo * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { switch (currentVIPLevel) { - case 1: + case 1: { + if (obj.authType == 1 || obj.authType == 2) { + [tempArray addObject:obj]; + } + } + break; case 2:{ if (obj.authType == 1 || obj.authType == 2 || obj.authType == 5) { [tempArray addObject:obj]; @@ -647,7 +652,16 @@ UICollectionViewDataSource> } } break; - case 4: + case 4:{ + if (obj.authType == 1 || + obj.authType == 2 || + obj.authType == 5 || + obj.authType == 8 || + obj.authType == 11) { + [tempArray addObject:obj]; + } + } + break; case 5: case 6: case 7: