2021-12-28 17:32:27 +08:00
|
|
|
//
|
|
|
|
// Api+NobleCenter.m
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by GreenLand on 2021/12/28.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "Api+NobleCenter.h"
|
|
|
|
|
|
|
|
@implementation Api (NobleCenter)
|
|
|
|
|
|
|
|
/// 贵族中心等级列表
|
|
|
|
/// @param completion 完成
|
2022-01-04 20:46:01 +08:00
|
|
|
+ (void)nobleCenterLevelList:(HttpRequestHelperCompletion)completion {
|
|
|
|
[self makeRequest:@"vip/getVipPageInfo" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__, nil];
|
2021-12-28 17:32:27 +08:00
|
|
|
}
|
|
|
|
|
2022-01-04 20:46:01 +08:00
|
|
|
///获取开通贵族产品列表
|
|
|
|
+ (void)getChargeList:(HttpRequestHelperCompletion)completion channelType:(NSString *)channelType {
|
|
|
|
[self makeRequest:@"chargeprod/listV2" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__, channelType, nil];
|
|
|
|
}
|
2021-12-28 17:32:27 +08:00
|
|
|
|
|
|
|
@end
|