@tmsfe/tms-core 0.0.137 → 0.0.138
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 -3
- package/src/report/types.ts +1 -1
package/package.json
CHANGED
package/src/report/formatV2.ts
CHANGED
|
@@ -66,9 +66,9 @@ function getBaseData(page: IPage, deviceData: IDeviceData): { arr: DataItem[], n
|
|
|
66
66
|
arr[26] = helper.getLifeReportKey();
|
|
67
67
|
// 27: f27,生成用户唯一id,方便追踪未登录接口
|
|
68
68
|
arr[27] = helper.getTmsUUID();
|
|
69
|
-
// 28: f28
|
|
70
|
-
arr[28] =
|
|
71
|
-
//
|
|
69
|
+
// 28: f28,实际执行页面url
|
|
70
|
+
arr[28] = page.execRoute;
|
|
71
|
+
// 29 ~ 30: 预留字段给后续扩展使用
|
|
72
72
|
// 31 ~ 40: 提供给开发自定义
|
|
73
73
|
// --------------------------字段列表--------------------------
|
|
74
74
|
return { arr, nextIndex: 31 };
|