|
@@ -229,14 +229,20 @@ const logPreRepost = () => {
|
|
|
log_pre_repost.params = {}
|
|
|
log_pre_repost.names = []
|
|
|
|
|
|
+ // rootTwitterName 在原始链接 上报原始发布者的name
|
|
|
+ // fatherTwitterName 在分享链接 上报分享者的name
|
|
|
+ // isFatherTwitterFans 在分享链接 邀请者非自己
|
|
|
+ // isRootTwitterFans 在原始链接或分享链接 发布者非自己
|
|
|
+
|
|
|
let params = {}
|
|
|
params.postId = state.postId
|
|
|
if (state.page_type == '邀请链接') {
|
|
|
params.shareLinkId = state.invite_code
|
|
|
params.fatherTwitterName = state.detail.inviteUserInfo.nickName
|
|
|
} else if (state.page_type == '原始链接') {
|
|
|
- params.rootTwitterName = state.detail.postUserInfo.nickName
|
|
|
+ params.fatherTwitterName = state.detail.postUserInfo.nickName
|
|
|
}
|
|
|
+ params.rootTwitterName = state.detail.postUserInfo.nickName
|
|
|
let names = []
|
|
|
if (state.detail.inviteUserInfo && (state.detail.inviteUserInfo.uid != global_userInfo.uid)) {
|
|
|
// isFatherTwitterFans = inviteUserInfo.nickName 的关注关系
|