|
@@ -1080,18 +1080,23 @@ const showCloseEndTimePageReport = () => {
|
|
|
|
|
|
const showSuccessPage = () => {
|
|
|
state.status = 'success'
|
|
|
- state.open_timer_status = true
|
|
|
- // 埋点
|
|
|
- Report.reportLog({
|
|
|
- pageSource: Report.pageSource.received_success_page,
|
|
|
- businessType: Report.businessType.pageView,
|
|
|
- postId: state.postId,
|
|
|
- srcContentId: state.tweetId,
|
|
|
- senderId: state.userId,
|
|
|
- isOldTwitterFans: reportParams.done.follow,
|
|
|
- isOldDiscordFans: reportParams.done.join_discord,
|
|
|
- redPacketType: 1
|
|
|
- });
|
|
|
+ state.open_timer_status = true;
|
|
|
+
|
|
|
+ if(!reportParams.reportReceivedPageViewSuccess) {
|
|
|
+ reportParams.reportReceivedPageViewSuccess = true;
|
|
|
+
|
|
|
+ // 埋点
|
|
|
+ Report.reportLog({
|
|
|
+ pageSource: Report.pageSource.received_success_page,
|
|
|
+ businessType: Report.businessType.pageView,
|
|
|
+ postId: state.postId,
|
|
|
+ srcContentId: state.tweetId,
|
|
|
+ senderId: state.userId,
|
|
|
+ isOldTwitterFans: reportParams.done.follow,
|
|
|
+ isOldDiscordFans: reportParams.done.join_discord,
|
|
|
+ redPacketType: 1
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
const showNotOpenPage = () => {
|