@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmsfe/tms-core",
3
- "version": "0.0.137",
3
+ "version": "0.0.138",
4
4
  "description": "tms运行时框架",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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 实际执行页面url
70
- arr[28] = helper.execRoute;
71
- // 28 ~ 30: 预留字段给后续扩展使用
69
+ // 28: f28,实际执行页面url
70
+ arr[28] = page.execRoute;
71
+ // 29 ~ 30: 预留字段给后续扩展使用
72
72
  // 31 ~ 40: 提供给开发自定义
73
73
  // --------------------------字段列表--------------------------
74
74
  return { arr, nextIndex: 31 };
@@ -31,7 +31,7 @@ export interface IPage {
31
31
  route: string,
32
32
  options: object,
33
33
  depth: number,
34
- execRoute: string,
34
+ execRoute?: string,
35
35
  }
36
36
 
37
37
  /**