|
@@ -220,6 +220,15 @@ func (this *YanxuanSpecialController) List() {
|
|
|
} else if v.Type == 2 {
|
|
|
v.Title = "【观点】" + v.Title
|
|
|
}
|
|
|
+ if v.CompanyTags != "" {
|
|
|
+ v.Tags += v.CompanyTags
|
|
|
+ }
|
|
|
+ if v.IndustryTags != "" {
|
|
|
+ if v.Tags != "" {
|
|
|
+ v.Tags += ","
|
|
|
+ }
|
|
|
+ v.Tags += v.IndustryTags
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
br.Data = list
|