|
@@ -320,7 +320,12 @@ Loop:
|
|
|
}
|
|
|
}
|
|
|
if detail.ArticleId < utils.SummaryArticleId {
|
|
|
- detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId)
|
|
|
+ if user.Mobile != "" {
|
|
|
+ chartUserTokenByMobile, _ := services.GetUserTokenByMobile(user.Mobile)
|
|
|
+ detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId) + "?token=" + chartUserTokenByMobile
|
|
|
+ } else {
|
|
|
+ detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId)
|
|
|
+ }
|
|
|
detail.IsNeedJump = true
|
|
|
}
|
|
|
|