李昊 4 years ago
parent
commit
ae62e83d6f

+ 3 - 3
gx_api/GxPress/Service/GxPress.Service.Implement/Article/ArticleService.cs

@@ -60,7 +60,7 @@ namespace GxPress.Service.Implement.Article
             //增加阅读量
             //访问
             if (userId > 0)
-                await _visitService.AddVisit(userId, 1, id);
+                await _visitService.AddVisit(userId, AllTypeConst.Article.GetHashCode(), id);
             //获取文章类型名称
             var articleGroup = await _articleGroupRepository.GetAsync(article.GroupId);
             var groupName = articleGroup == null ? "" : articleGroup.Name;
@@ -137,7 +137,7 @@ namespace GxPress.Service.Implement.Article
             articleResult.PraiseCount = praiseCount;
             //是否点赞
             articleResult.IsPraise = await _analyzeService.ExistsAsync(analyzeRequest);
-            var request = new PraisePageSearchRequest { SourceId = id, TypeValue =AllTypeConst.Article.GetHashCode(), Page = 1, PerPage = 3 };
+            var request = new PraisePageSearchRequest { SourceId = id, TypeValue = AllTypeConst.Article.GetHashCode(), Page = 1, PerPage = 3 };
             articleResult.ArticlePraisePagedList = await _analyzeService.GetPraisePageAsync(request);
             return articleResult;
         }
@@ -304,7 +304,7 @@ namespace GxPress.Service.Implement.Article
                 AddDate = article.AddDate,
                 Sort = article.Sort,
                 IsTop = request.IsTop,
-                ArticleContent=StringUtils.JsonDeserialize<ArticleContent>(article.ContentJson)
+                ArticleContent = StringUtils.JsonDeserialize<ArticleContent>(article.ContentJson)
             };
             //文章图片
             var resultImageUrls = articleResult.ImageUrls.ToList();

+ 1 - 1
gx_api/GxPress/Service/GxPress.Service.Implement/Note/NoteService.cs

@@ -498,7 +498,7 @@ namespace GxPress.Service.Implement.Note
             result.IsCollect = await _analyzeService.ExistsAsync(analyzeRequest);
             result.Data = list;
             //修改访问量
-            await _visitService.AddVisit(userId, 4, id);
+            await _visitService.AddVisit(userId, analyzeRequest.TypeValue, id);
             //是否自建
             result.IsAdmin = note.UserId == userId;
             var praisePageSearchRequest = new PraisePageSearchRequest { SourceId = id, TypeValue = analyzeRequest.TypeValue, Page = 1, PerPage = 3 };