CNLiveCMineViewModuleImpl.m 1.09 KB
//
//  CNLiveCMineViewModuleImpl.m
//  CNLiveCMineModule_Example
//
//  Created by open on 2021/12/29.
//  Copyright © 2021 杨苓玉. All rights reserved.
//

#import "CNLiveCMineViewModuleImpl.h"

@implementation CNLiveCMineViewModuleImpl

/// 我的积分跳转主工程我的客服界面
-(void)pushCMineInteContentForCMainPlatFromCurrentVC:(UIViewController *)currentVC
{
    
}

/// 我的积分调用主工程中的友盟统计
-(void)pushCMineInteContentForCMainUMengStatisticaMedthod
{
    //    [MobClick event:@"config_click_checkIn"];
}

/// 我的积分跳转主工程webView界面
/// @param url 链接地址
- (void)pushCMineInteContentForCMainWebViewWithURL:(nonnull NSString *)url statue:(CNLiveCMineIntePushWebViewStatue)statue {
    
}

- (void)pushCMineInteContentForCMainCustomFunctionVCParam:(nonnull NSDictionary *)param CurrentVC:(nonnull UIViewController *)currentVC {
    
}


/// 积分任务跳转到不同界面去完成
/// @param param 参数
-(void)pushCMineInteContentForCMainCustomFunctionVCParam:(NSDictionary *)param
{
    NSLog(@"跳转不同积分任务=>%@",param);
}

@end