优化有赚分享数据上报 review by 肖亚东
Showing
1 changed file
with
7 additions
and
0 deletions
@@ -114,6 +114,13 @@ App({ | @@ -114,6 +114,13 @@ App({ | ||
114 | yas.report('YB_REGISTER_SUCCESS', params); | 114 | yas.report('YB_REGISTER_SUCCESS', params); |
115 | }); | 115 | }); |
116 | 116 | ||
117 | + let shareParams = {}; | ||
118 | + if (options && options.query) { | ||
119 | + for (var Key in options.query) { | ||
120 | + shareParams[Key] = options.query[Key]; | ||
121 | + } | ||
122 | + } | ||
123 | + yas.report('YB_SHARE_UNION_TYPE', shareParams) | ||
117 | 124 | ||
118 | yas.report('YB_ENTER_FOREGROUND'); // 系统-程序切换置前台上报 | 125 | yas.report('YB_ENTER_FOREGROUND'); // 系统-程序切换置前台上报 |
119 | if (this.reportData.awakeReported === false) { | 126 | if (this.reportData.awakeReported === false) { |
-
Please register or login to post a comment