【光环助手V5.3.0】Q&A管理-事件埋点(1009测试1) https://git.ghzs.com/pm/halo-app-issues/-/issues/1393

This commit is contained in:
jack
2021-10-11 09:10:29 +08:00
parent 5351ffd6b6
commit ed2b41bc55
2 changed files with 3 additions and 3 deletions

View File

@ -1239,10 +1239,10 @@ object NewLogUtils {
}
//点击QA更多
fun logClickQaMoreBtn(qaTitle: String) {
fun logClickQaMoreBtn(helpId: String) {
val json = json {
"event" to "qa_click_title_more"
"qa_title" to qaTitle
"help_id" to helpId
"meta" to LogUtils.getMetaObject()
"launch_id" to Tracker.launchId
"session_id" to Tracker.sessionId

View File

@ -52,7 +52,7 @@ class HelpQaCategoryAdapter(val context: Context, val mQaCollectionId: String?)
} else {
MtaHelper.onEvent("意见反馈", "使用帮助点击", "点击更多+${helpCategoryEntity.name}")
}
NewLogUtils.logClickQaMoreBtn(helpCategoryEntity.name)
NewLogUtils.logClickQaMoreBtn(helpCategoryEntity.id)
}
}
}