作者 tangxvhui

调整标签输出

@@ -503,6 +503,7 @@ type ( @@ -503,6 +503,7 @@ type (
503 TagRemark string `json:"tagRemark"` // 标签备注 503 TagRemark string `json:"tagRemark"` // 标签备注
504 TotalArticle int `json:"totalArticle"` // 总的文章数量 504 TotalArticle int `json:"totalArticle"` // 总的文章数量
505 ReadArticle int `json:"readArticle"` // 已读的标签数量 505 ReadArticle int `json:"readArticle"` // 已读的标签数量
  506 + SortBy int `json:"sortBy"` // 排序
506 } 507 }
507 ) 508 )
508 509
@@ -56,6 +56,7 @@ func (l *MiniShowHomePageLogic) MiniShowHomePage(req *types.MiniHomePageRequest) @@ -56,6 +56,7 @@ func (l *MiniShowHomePageLogic) MiniShowHomePage(req *types.MiniHomePageRequest)
56 TagRemark: val.Remark, 56 TagRemark: val.Remark,
57 TotalArticle: 0, 57 TotalArticle: 0,
58 ReadArticle: 0, 58 ReadArticle: 0,
  59 + SortBy: int(val.SortBy),
59 } 60 }
60 if count, ok := countDataMap[val.Id]; ok { 61 if count, ok := countDataMap[val.Id]; ok {
61 m.TotalArticle = count.TotalArticle 62 m.TotalArticle = count.TotalArticle
@@ -1239,6 +1239,7 @@ type ArticleTagCount struct { @@ -1239,6 +1239,7 @@ type ArticleTagCount struct {
1239 TagRemark string `json:"tagRemark"` // 标签备注 1239 TagRemark string `json:"tagRemark"` // 标签备注
1240 TotalArticle int `json:"totalArticle"` // 总的文章数量 1240 TotalArticle int `json:"totalArticle"` // 总的文章数量
1241 ReadArticle int `json:"readArticle"` // 已读的标签数量 1241 ReadArticle int `json:"readArticle"` // 已读的标签数量
  1242 + SortBy int `json:"sortBy"` // 排序
1242 } 1243 }
1243 1244
1244 type MiniSearchArticleRequest struct { 1245 type MiniSearchArticleRequest struct {