Commit 1158c52ec26b74c2dc3c431d4a37121a84ce0dea

Authored by 杨桓桓
1 parent 92f11f94
Exists in 1.0.0

更新 数据打点

puchi_laya/src/sdk/TeaSdk.ts
... ... @@ -11,7 +11,7 @@ export default class TeaSdk {
11 11 } else if (typeof (value) == 'object') {
12 12 value = JSON.stringify(value);
13 13 }
14   - AppSdk.I.callApp('appLog_dot', key, value);
  14 + AppSdk.I.callApp('appDotLog', key, value);
15 15 }
16 16  
17 17 static get I(): TeaSdk {
... ...
puchi_laya/src/sdk/TrackingSdk.ts
... ... @@ -6,7 +6,7 @@ import ObjectInstance from "../uitl/ObjectInstance";
6 6 */
7 7 export default class TrackingSdk {
8 8 dot(key: string) {
9   - AppSdk.I.callApp('tracking_event', key);
  9 + AppSdk.I.callApp('appDotTracKing', key);
10 10 }
11 11  
12 12 static get I(): TrackingSdk {
... ...