|
@@ -824,13 +824,15 @@ import Cocoa
|
|
|
.map { $0.trimmingCharacters(in: .whitespaces) }
|
|
|
|
|
|
if userScenarioType == .pro_type5 {
|
|
|
- if(platformsArray.contains("mac")) { //购买了mac
|
|
|
+ if(platformsArray.contains("mac") && KMMemberInfo.shared.vip_levels == "3") { //购买了mac且高级
|
|
|
return true
|
|
|
}
|
|
|
} else if userScenarioType == .pro_type1 ||
|
|
|
userScenarioType == .pro_type2 ||
|
|
|
userScenarioType == .pro_type4 {
|
|
|
- return true
|
|
|
+ if(platformsArray.contains("mac") && KMMemberInfo.shared.vip_levels == "3") { //购买了mac
|
|
|
+ return true
|
|
|
+ }
|
|
|
}
|
|
|
return false
|
|
|
}
|