添加埋点

This commit is contained in:
2026-01-06 19:25:34 +08:00
parent 1096f24c57
commit c3909d63da
30 changed files with 784 additions and 39 deletions

View File

@@ -244,11 +244,21 @@ static const CGFloat JXheightForHeaderInSection = 50;
#pragma mark - action
- (void)searchBtnAction{
[[KBMaiPointReporter sharedReporter] reportClickWithEventName:@"click_shop_search_btn"
pageId:@"shop"
elementId:@"search_btn"
extra:nil
completion:nil];
KBSearchVC *vc = [[KBSearchVC alloc] init];
[self.navigationController pushViewController:vc animated:true];
}
- (void)skinBtnAction{
[[KBMaiPointReporter sharedReporter] reportClickWithEventName:@"click_shop_my_skin_btn"
pageId:@"shop"
elementId:@"my_skin_btn"
extra:nil
completion:nil];
MySkinVC *vc = [[MySkinVC alloc] init];
[self.navigationController pushViewController:vc animated:true];
}