@tmsfe/tms-core 0.0.105 → 0.0.106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/report/formatV2.ts +3 -2
package/package.json
CHANGED
package/src/report/formatV2.ts
CHANGED
|
@@ -16,9 +16,10 @@ function getBaseData(page: IPage, deviceData: IDeviceData): { arr: DataItem[], n
|
|
|
16
16
|
// todo: 如何区分新旧埋点?新:f20不为空,旧:f20为空
|
|
17
17
|
// ++++++++++++++++++++++++++字段列表++++++++++++++++++++++++++
|
|
18
18
|
// 0: log_time,日志入库时间
|
|
19
|
-
// 1: access_time
|
|
19
|
+
// 1: access_time,埋点触发时间,如:20221207103148178
|
|
20
20
|
arr[1] = helper.getNowString();
|
|
21
|
-
// 2: user_ip
|
|
21
|
+
// 2: user_ip,埋点触发时间戳,如:1670558265525
|
|
22
|
+
arr[2] = Date.now();
|
|
22
23
|
// 3: qimei,灯塔中的用户ID
|
|
23
24
|
// 4: imei,Android手机的imei IOS系统中的idfv 车联网中的wecarid
|
|
24
25
|
// 5: user_id,用户ID
|