作者 tangxvhui

调整标签输出

@@ -496,13 +496,14 @@ type ( @@ -496,13 +496,14 @@ type (
496 Tags []ArticleTagCount `json:"tags"` 496 Tags []ArticleTagCount `json:"tags"`
497 } 497 }
498 ArticleTagCount { 498 ArticleTagCount {
499 - TagCategory string `json:"tagCategory"` // 标签分组 499 + TagCategory string `json:"tagCategory"` // 标签分组
500 TagId int64 `json:"tagId"` // 标签id 500 TagId int64 `json:"tagId"` // 标签id
501 TagImage string `json:"tagImage"` // 对应的图标 501 TagImage string `json:"tagImage"` // 对应的图标
502 TagName string `json:"tagName"` // 标签名称 502 TagName string `json:"tagName"` // 标签名称
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 {