Commit 9ab53a9de8da39624623f1fa04e362716862fda6
1 parent
eb7a87cd
0.1.7
Showing
3 changed files
with
4 additions
and
4 deletions
CNLiveCMineModule.podspec
CNLiveCMineModule/Classes/CNCSubMine/ViewController/CNMineAccountManageController.m
| ... | ... | @@ -335,7 +335,7 @@ static NSString *aboutNetAddImgCellId = @"aboutNetAddImgCellId"; |
| 335 | 335 | } |
| 336 | 336 | else if (indexPath.row == 6) { //资质信息 |
| 337 | 337 | [CNMinePresent getAgreementH5WithType:CNAgreementEnterpriseQualification success:^(NSString *h5, NSString *title) { |
| 338 | - [[CNLiveCMineService shareMineProtocol] pushCMineContentForCMainPlatWithType:6 param:@{@"title":title,@"urlStr":h5} contentVC:self ]; | |
| 338 | + [[CNLiveCMineService shareMineProtocol] pushCMineContentForCMainPlatWithType:1 param:@{@"title":title,@"urlStr":h5} contentVC:self ]; | |
| 339 | 339 | |
| 340 | 340 | } failure:^(NSError *error) { |
| 341 | 341 | [QMUITips showError:error.localizedDescription inView:self.view hideAfterDelay:1.5]; |
| ... | ... | @@ -367,7 +367,7 @@ static NSString *aboutNetAddImgCellId = @"aboutNetAddImgCellId"; |
| 367 | 367 | [self presentViewController:actionAlert animated:YES completion:nil]; |
| 368 | 368 | } |
| 369 | 369 | else if (indexPath.row == 9) { //投诉 |
| 370 | - [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainCustomFunctionVCParam:@{@"type":@"customer_report"} CurrentVC:self]; | |
| 370 | + [[CNLiveCMineService shareMineProtocol] pushCMineContentForCMainPlatWithType:6 param:@{} contentVC:self ]; | |
| 371 | 371 | |
| 372 | 372 | } |
| 373 | 373 | } | ... | ... |
CNLiveCMineModule/Classes/CNLiveCMineProtocol.h
| ... | ... | @@ -72,7 +72,7 @@ NS_ASSUME_NONNULL_BEGIN |
| 72 | 72 | - (void)sendMessageWithCodeType:(CNLiveMobileType) type mobile:(NSString *)pNumber contryCode:(NSString *)contryCode verificationCode:(NSString *)verifiCode success:(void(^)(id result))success failure:(void(^)(NSDictionary *errorDic))failure; |
| 73 | 73 | |
| 74 | 74 | /// 交互跳转 |
| 75 | -/// @param type 跳转类型1.协议信息h5页面 2.我的视频 3.生活圈 4付费记录 5.电商订单 6资质信息 7听见中国 8扫描二维码 9设置背景图片 10用户信息页 11通信录黑名单 12活动h5页面 13小家音响页面跳转 14通讯录界面 15点播页面 16聊天界面 17达人主页 18我的家园 19我的工会 20我的社区 21我的礼盒 22我的话题 23赛事活动 24徒步记录 25路径工具 26第三方绑定 | |
| 75 | +/// @param type 跳转类型1.协议信息h5页面 2.我的视频 3.生活圈 4付费记录 5.电商订单 6投诉 7听见中国 8扫描二维码 9设置背景图片 10用户信息页 11通信录黑名单 12活动h5页面 13小家音响页面跳转 14通讯录界面 15点播页面 16聊天界面 17达人主页 18我的家园 19我的工会 20我的社区 21我的礼盒 22我的话题 23赛事活动 24徒步记录 25路径工具 26第三方绑定 | |
| 76 | 76 | /// @param param 跳转传参 |
| 77 | 77 | - (void)pushCMineContentForCMainPlatWithType:(NSInteger)type param:(NSDictionary *)param contentVC:(UIViewController *)contetVC; |
| 78 | 78 | ... | ... |