Merge branch 'master_develop' of http://60.1.1.230/gaoxin/JL_Client into master_develop

dev_chengFeng
jiaoyangna 2020-07-25 17:24:25 +08:00
commit 58702c0025
7 changed files with 12 additions and 6 deletions

View File

@ -92,10 +92,12 @@ end
-- 打点事件
function this.Track(event, data)
if AppConst.isSDK then
Log("打点事件:"..event)
local dStr = data and _DicToStr(data) or ""
Log("打点数据:"..dStr)
App.TAMgr:Track(event, dStr)
end
end

View File

@ -118,6 +118,10 @@ end
function this.ShowGuide(id, ...)
-- 引导数据打点
DataCenterManager.CommitClickStatus(Language[10839], tostring(id))
ThinkingAnalyticsManager.Track("guild", {
step_id = id,
guild_start_time = GetTimeStamp(),
})
-- 引导结束回调
local function onGuideClose()
if GuideConfig[id].Type == GuideType.Force then
@ -134,7 +138,7 @@ function this.ShowGuide(id, ...)
end
-- 监听下一步引导
if GuideConfig[id].Next ~= 0 then
if GuideConfig[id].Next ~= 0 then
this.CheckNextGuideListen(GuideConfig[id].Next)
end
-- 开始功能引导

View File

@ -67,7 +67,7 @@ function this.LoginRequest(openId, func)
ThinkingAnalyticsManager.SetDistinctId(AppConst.OpenId)
ThinkingAnalyticsManager.SetSuperProperties({
server_id = LoginManager.ServerId,
account = AppConst.OpenId,
account = tostring(AppConst.OpenId),
["Bundle-id"] = AppConst.SdkPackageName,
xx_id = AppConst.SdkChannel
})