Преглед на файлове

Merge branch 'cygx_9.7' of http://8.136.199.33:3000/hongze/hongze_cygx into debug

xingzai преди 2 години
родител
ревизия
d82a656491
променени са 3 файла, в които са добавени 3 реда и са изтрити 6 реда
  1. 1 2
      controllers/activity.go
  2. 1 2
      controllers/article.go
  3. 1 2
      controllers/report.go

+ 1 - 2
controllers/activity.go

@@ -497,7 +497,7 @@ func (this *ActivityCoAntroller) Detail() {
 		}
 		activityInfo.SignupType = mapActivitySignup[activityId]
 		//判断是不是通过微信模版推送消息进来的
-		if isSendWx == 1 && len(industrialList) > 0 {
+		if isSendWx == 0 && len(industrialList) > 0 {
 			industryUserFollowMap, err := services.GetIndustryUserFollowMap(user)
 			if err != nil {
 				br.Msg = "获取信息失败"
@@ -511,7 +511,6 @@ func (this *ActivityCoAntroller) Detail() {
 			}
 			activityInfo.IsShowFollowButton = true
 		}
-		activityInfo.IsShowFollowButton = true
 		if activityInfo.ReportLink != "" {
 			artList, err := services.GetActivityReportLinkToArticleList(activityInfo)
 			if err != nil && err.Error() != utils.ErrNoRow() {

+ 1 - 2
controllers/article.go

@@ -82,8 +82,7 @@ func (this *ArticleController) Detail() {
 		br.ErrMsg = "获取信息失败,Err:" + err.Error()
 		return
 	}
-	detail.IsShowFollowButton = true
-	if isSendWx == 1 {
+	if isSendWx == 0 {
 		var condition string
 		var pars []interface{}
 		pars = make([]interface{}, 0)

+ 1 - 2
controllers/report.go

@@ -435,7 +435,7 @@ func (this *ReportController) ArticleCategoryList() {
 	if videoSimple.Id > 0 {
 		resp.IndustryVideo = videoSimple
 	}
-	if isSendWx == 1 {
+	if isSendWx == 0 {
 		industryUserFollowMap, err := services.GetIndustryUserFollowMap(user)
 		if err != nil {
 			br.Msg = "获取信息失败"
@@ -445,7 +445,6 @@ func (this *ReportController) ArticleCategoryList() {
 		resp.IsFollowButton = industryUserFollowMap[industrialManagementId]
 		resp.IsShowFollowButton = true
 	}
-	resp.IsShowFollowButton = true
 	br.Ret = 200
 	br.Success = true
 	br.Msg = "获取成功"