|
@@ -336,15 +336,14 @@ export default {
|
|
|
postId: this.detail.postId,
|
|
|
srcContentId: this.detail.srcContentId,
|
|
|
senderId: this.detail.srcUserId,
|
|
|
- },
|
|
|
- extParams: {
|
|
|
- status: '',
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
clickOpenChrome() {
|
|
|
window.open('https://www.google.com/chrome')
|
|
|
+
|
|
|
+ let extParams = this.isMobile() ? {} : { status: this.reportStatus }
|
|
|
Report.reportLog({
|
|
|
baseInfo: {
|
|
|
appVersionCode: this.appVersionCode,
|
|
@@ -361,9 +360,7 @@ export default {
|
|
|
srcContentId: this.detail.srcContentId,
|
|
|
senderId: this.detail.srcUserId,
|
|
|
},
|
|
|
- extParams: {
|
|
|
- status: '',
|
|
|
- }
|
|
|
+ extParams: extParams
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -374,6 +371,7 @@ export default {
|
|
|
installExtension() {
|
|
|
let { extensionsInstallChannel, extensionsInstallUrl } = this.config;
|
|
|
let url = extensionsInstallUrl;
|
|
|
+ let extParams = this.isMobile() ? {} : { status: this.reportStatus }
|
|
|
Report.reportLog({
|
|
|
baseInfo: {
|
|
|
appVersionCode: this.appVersionCode,
|
|
@@ -390,9 +388,7 @@ export default {
|
|
|
srcContentId: this.detail.srcContentId,
|
|
|
senderId: this.detail.srcUserId,
|
|
|
},
|
|
|
- extParams: {
|
|
|
- status: '',
|
|
|
- }
|
|
|
+ extParams: extParams,
|
|
|
}
|
|
|
})
|
|
|
switch (extensionsInstallChannel) {
|
|
@@ -661,9 +657,6 @@ export default {
|
|
|
postId: this.detail.postId,
|
|
|
srcContentId: this.detail.srcContentId,
|
|
|
senderId: this.detail.srcUserId,
|
|
|
- },
|
|
|
- extParams: {
|
|
|
- status: '',
|
|
|
}
|
|
|
}
|
|
|
})
|