|
@@ -559,64 +559,6 @@ func (this *HomeController) ListHomeArtAndChart() {
|
|
list = homeList
|
|
list = homeList
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
resp.List, err = services.HandleArticleCategoryImg(list)
|
|
resp.List, err = services.HandleArticleCategoryImg(list)
|
|
if err != nil {
|
|
if err != nil {
|
|
br.Msg = "获取信息失败"
|
|
br.Msg = "获取信息失败"
|
|
@@ -684,11 +626,11 @@ func (this *HomeController) NewList() {
|
|
}
|
|
}
|
|
|
|
|
|
var articleTypes, activityTypes, industries, subjectNames string
|
|
var articleTypes, activityTypes, industries, subjectNames string
|
|
- articleTypeCondSlice := make([]string,0)
|
|
+ articleTypeCondSlice := make([]string, 0)
|
|
- activityTypesCondSlice := make([]string,0)
|
|
+ activityTypesCondSlice := make([]string, 0)
|
|
- industriesCondSlice := make([]string,0)
|
|
+ industriesCondSlice := make([]string, 0)
|
|
- subjectNamesSlice := make([]string,0)
|
|
+ subjectNamesSlice := make([]string, 0)
|
|
- articleTypeSlice := make([]string,0)
|
|
+ articleTypeSlice := make([]string, 0)
|
|
if tagIds != "" {
|
|
if tagIds != "" {
|
|
tags := strings.Split(tagIds, ",")
|
|
tags := strings.Split(tagIds, ",")
|
|
for _, tagIdStr := range tags {
|
|
for _, tagIdStr := range tags {
|
|
@@ -739,48 +681,48 @@ func (this *HomeController) NewList() {
|
|
var articleTypeStr string
|
|
var articleTypeStr string
|
|
if articleType != "" {
|
|
if articleType != "" {
|
|
articleTypeSlice := strings.Split(articleType, ",")
|
|
articleTypeSlice := strings.Split(articleType, ",")
|
|
- newArticleTypeSlice := make([]string,0)
|
|
+ newArticleTypeSlice := make([]string, 0)
|
|
for _, s := range articleTypeSlice {
|
|
for _, s := range articleTypeSlice {
|
|
- newArticleTypeSlice = append(newArticleTypeSlice, "'"+ s + "'")
|
|
+ newArticleTypeSlice = append(newArticleTypeSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
articleTypeStr = strings.Join(newArticleTypeSlice, ",")
|
|
articleTypeStr = strings.Join(newArticleTypeSlice, ",")
|
|
- articleTypeStr = strings.TrimRight(articleTypeStr,",")
|
|
+ articleTypeStr = strings.TrimRight(articleTypeStr, ",")
|
|
- articleTypeCond += ` AND (art.sub_category_name In (`+ articleTypeStr +`) OR (art.article_type_name In (`+ articleTypeStr +`) AND art.article_type_name <> '路演精华' AND art.article_type_id <> 0 ) ) `
|
|
+ articleTypeCond += ` AND (art.sub_category_name In (` + articleTypeStr + `) OR (art.article_type_name In (` + articleTypeStr + `) AND art.article_type_name <> '路演精华' AND art.article_type_id <> 0 ) ) `
|
|
}
|
|
}
|
|
activityTypesCond := ``
|
|
activityTypesCond := ``
|
|
if activityType != "" {
|
|
if activityType != "" {
|
|
activityTypeSlice := strings.Split(activityType, ",")
|
|
activityTypeSlice := strings.Split(activityType, ",")
|
|
- newActivityTypeSlice := make([]string,0)
|
|
+ newActivityTypeSlice := make([]string, 0)
|
|
for _, s := range activityTypeSlice {
|
|
for _, s := range activityTypeSlice {
|
|
- newActivityTypeSlice = append(newActivityTypeSlice, "'"+ s + "'")
|
|
+ newActivityTypeSlice = append(newActivityTypeSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
activityTypeStr := strings.Join(newActivityTypeSlice, ",")
|
|
activityTypeStr := strings.Join(newActivityTypeSlice, ",")
|
|
- activityTypeStr = strings.TrimRight(activityTypeStr,",")
|
|
+ activityTypeStr = strings.TrimRight(activityTypeStr, ",")
|
|
- activityTypesCond += ` AND act.activity_type_name In (`+ activityTypeStr +`) `
|
|
+ activityTypesCond += ` AND act.activity_type_name In (` + activityTypeStr + `) `
|
|
}
|
|
}
|
|
industriesCond := ``
|
|
industriesCond := ``
|
|
var industryStr string
|
|
var industryStr string
|
|
if industry != "" {
|
|
if industry != "" {
|
|
industrieSlice := strings.Split(industry, ",")
|
|
industrieSlice := strings.Split(industry, ",")
|
|
- newIndustrieSlice := make([]string,0)
|
|
+ newIndustrieSlice := make([]string, 0)
|
|
for _, s := range industrieSlice {
|
|
for _, s := range industrieSlice {
|
|
- newIndustrieSlice = append(newIndustrieSlice, "'"+ s + "'")
|
|
+ newIndustrieSlice = append(newIndustrieSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
industryStr = strings.Join(newIndustrieSlice, ",")
|
|
industryStr = strings.Join(newIndustrieSlice, ",")
|
|
industryStr = strings.TrimRight(industryStr, ",")
|
|
industryStr = strings.TrimRight(industryStr, ",")
|
|
- industriesCond += ` AND im.industry_name In (`+ industryStr +`) `
|
|
+ industriesCond += ` AND im.industry_name In (` + industryStr + `) `
|
|
}
|
|
}
|
|
subjectNamesCond := ``
|
|
subjectNamesCond := ``
|
|
var subjectNameStr string
|
|
var subjectNameStr string
|
|
if subjectName != "" {
|
|
if subjectName != "" {
|
|
subjectNameSlice := strings.Split(subjectName, ",")
|
|
subjectNameSlice := strings.Split(subjectName, ",")
|
|
- newSubjectNameSlice := make([]string,0)
|
|
+ newSubjectNameSlice := make([]string, 0)
|
|
for _, s := range subjectNameSlice {
|
|
for _, s := range subjectNameSlice {
|
|
- newSubjectNameSlice = append(newSubjectNameSlice, "'"+ s + "'")
|
|
+ newSubjectNameSlice = append(newSubjectNameSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
subjectNameStr = strings.Join(newSubjectNameSlice, ",")
|
|
subjectNameStr = strings.Join(newSubjectNameSlice, ",")
|
|
subjectNameStr = strings.TrimRight(subjectNameStr, ",")
|
|
subjectNameStr = strings.TrimRight(subjectNameStr, ",")
|
|
- subjectNamesCond += ` AND cis.subject_name In (`+ subjectNameStr +`) `
|
|
+ subjectNamesCond += ` AND cis.subject_name In (` + subjectNameStr + `) `
|
|
}
|
|
}
|
|
articleTypeCondSlice = append(articleTypeCondSlice, articleTypeCond)
|
|
articleTypeCondSlice = append(articleTypeCondSlice, articleTypeCond)
|
|
activityTypesCondSlice = append(activityTypesCondSlice, activityTypesCond)
|
|
activityTypesCondSlice = append(activityTypesCondSlice, activityTypesCond)
|
|
@@ -800,61 +742,61 @@ func (this *HomeController) NewList() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- articleTypes = strings.TrimRight(articleTypes,",")
|
|
+ articleTypes = strings.TrimRight(articleTypes, ",")
|
|
- activityTypes = strings.TrimRight(activityTypes,",")
|
|
+ activityTypes = strings.TrimRight(activityTypes, ",")
|
|
- industries = strings.TrimRight(industries,",")
|
|
+ industries = strings.TrimRight(industries, ",")
|
|
- subjectNames = strings.TrimRight(subjectNames,",")
|
|
+ subjectNames = strings.TrimRight(subjectNames, ",")
|
|
|
|
|
|
articleTypesCond := ``
|
|
articleTypesCond := ``
|
|
var articleTypeStr string
|
|
var articleTypeStr string
|
|
if articleTypes != "" {
|
|
if articleTypes != "" {
|
|
articleTypeSlice := strings.Split(articleTypes, ",")
|
|
articleTypeSlice := strings.Split(articleTypes, ",")
|
|
- newArticleTypeSlice := make([]string,0)
|
|
+ newArticleTypeSlice := make([]string, 0)
|
|
for _, s := range articleTypeSlice {
|
|
for _, s := range articleTypeSlice {
|
|
- newArticleTypeSlice = append(newArticleTypeSlice, "'"+ s + "'")
|
|
+ newArticleTypeSlice = append(newArticleTypeSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
articleTypeStr = strings.Join(newArticleTypeSlice, ",")
|
|
articleTypeStr = strings.Join(newArticleTypeSlice, ",")
|
|
- articleTypeStr = strings.TrimRight(articleTypeStr,",")
|
|
+ articleTypeStr = strings.TrimRight(articleTypeStr, ",")
|
|
- articleTypesCond += ` AND (art.sub_category_name In (`+ articleTypeStr +`) OR (art.article_type_name In (`+ articleTypeStr +`) AND art.article_type_name <> '路演精华' AND art.article_type_id <> 0 ) ) `
|
|
+ articleTypesCond += ` AND (art.sub_category_name In (` + articleTypeStr + `) OR (art.article_type_name In (` + articleTypeStr + `) AND art.article_type_name <> '路演精华' AND art.article_type_id <> 0 ) ) `
|
|
}
|
|
}
|
|
activityTypesCond := ``
|
|
activityTypesCond := ``
|
|
if activityTypes != "" {
|
|
if activityTypes != "" {
|
|
activityTypeSlice := strings.Split(activityTypes, ",")
|
|
activityTypeSlice := strings.Split(activityTypes, ",")
|
|
- newActivityTypeSlice := make([]string,0)
|
|
+ newActivityTypeSlice := make([]string, 0)
|
|
for _, s := range activityTypeSlice {
|
|
for _, s := range activityTypeSlice {
|
|
- newActivityTypeSlice = append(newActivityTypeSlice, "'"+ s + "'")
|
|
+ newActivityTypeSlice = append(newActivityTypeSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
activityTypeStr := strings.Join(newActivityTypeSlice, ",")
|
|
activityTypeStr := strings.Join(newActivityTypeSlice, ",")
|
|
- activityTypeStr = strings.TrimRight(activityTypeStr,",")
|
|
+ activityTypeStr = strings.TrimRight(activityTypeStr, ",")
|
|
- activityTypesCond += ` AND act.activity_type_name In (`+ activityTypeStr +`) `
|
|
+ activityTypesCond += ` AND act.activity_type_name In (` + activityTypeStr + `) `
|
|
}
|
|
}
|
|
industriesCond := ``
|
|
industriesCond := ``
|
|
var industryStr string
|
|
var industryStr string
|
|
if industries != "" {
|
|
if industries != "" {
|
|
industrieSlice := strings.Split(industries, ",")
|
|
industrieSlice := strings.Split(industries, ",")
|
|
- newIndustrieSlice := make([]string,0)
|
|
+ newIndustrieSlice := make([]string, 0)
|
|
for _, s := range industrieSlice {
|
|
for _, s := range industrieSlice {
|
|
- newIndustrieSlice = append(newIndustrieSlice, "'"+ s + "'")
|
|
+ newIndustrieSlice = append(newIndustrieSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
industryStr = strings.Join(newIndustrieSlice, ",")
|
|
industryStr = strings.Join(newIndustrieSlice, ",")
|
|
industryStr = strings.TrimRight(industryStr, ",")
|
|
industryStr = strings.TrimRight(industryStr, ",")
|
|
- industriesCond += ` AND im.industry_name In (`+ industryStr +`) `
|
|
+ industriesCond += ` AND im.industry_name In (` + industryStr + `) `
|
|
}
|
|
}
|
|
subjectNamesCond := ``
|
|
subjectNamesCond := ``
|
|
var subjectNameStr string
|
|
var subjectNameStr string
|
|
if subjectNames != "" {
|
|
if subjectNames != "" {
|
|
subjectNameSlice := strings.Split(subjectNames, ",")
|
|
subjectNameSlice := strings.Split(subjectNames, ",")
|
|
- newSubjectNameSlice := make([]string,0)
|
|
+ newSubjectNameSlice := make([]string, 0)
|
|
for _, s := range subjectNameSlice {
|
|
for _, s := range subjectNameSlice {
|
|
- newSubjectNameSlice = append(newSubjectNameSlice, "'"+ s + "'")
|
|
+ newSubjectNameSlice = append(newSubjectNameSlice, "'"+s+"'")
|
|
}
|
|
}
|
|
subjectNameStr = strings.Join(newSubjectNameSlice, ",")
|
|
subjectNameStr = strings.Join(newSubjectNameSlice, ",")
|
|
subjectNameStr = strings.TrimRight(subjectNameStr, ",")
|
|
subjectNameStr = strings.TrimRight(subjectNameStr, ",")
|
|
- subjectNamesCond += ` AND cis.subject_name In (`+ subjectNameStr +`) `
|
|
+ subjectNamesCond += ` AND cis.subject_name In (` + subjectNameStr + `) `
|
|
}
|
|
}
|
|
|
|
|
|
- var tagArticleIds,tagActivityIds, mmIds string
|
|
+ var tagArticleIds, tagActivityIds, mmIds string
|
|
- if articleTypesCond != "" || activityTypesCond != "" || industryStr != "" || subjectNameStr != ""{
|
|
+ if articleTypesCond != "" || activityTypesCond != "" || industryStr != "" || subjectNameStr != "" {
|
|
tagArticleIds, tagActivityIds, mmIds, err = models.GetCygxCygxArticleListByCondition(articleTypesCond, activityTypesCond, industryStr, subjectNameStr, articleTypeStr)
|
|
tagArticleIds, tagActivityIds, mmIds, err = models.GetCygxCygxArticleListByCondition(articleTypesCond, activityTypesCond, industryStr, subjectNameStr, articleTypeStr)
|
|
if err != nil && err.Error() != utils.ErrNoRow() {
|
|
if err != nil && err.Error() != utils.ErrNoRow() {
|
|
br.Msg = "获取失败"
|
|
br.Msg = "获取失败"
|
|
@@ -923,7 +865,6 @@ func (this *HomeController) NewList() {
|
|
}
|
|
}
|
|
lenActivityIds := len(activityIds)
|
|
lenActivityIds := len(activityIds)
|
|
|
|
|
|
-
|
|
|
|
listActivitySpecial, _, err := services.GetActivitySpecialList(user, 1, 200, "")
|
|
listActivitySpecial, _, err := services.GetActivitySpecialList(user, 1, 200, "")
|
|
if err != nil {
|
|
if err != nil {
|
|
br.Msg = "获取失败"
|
|
br.Msg = "获取失败"
|
|
@@ -937,7 +878,6 @@ func (this *HomeController) NewList() {
|
|
}
|
|
}
|
|
lenActivityspecialIds := len(activityspecialIds)
|
|
lenActivityspecialIds := len(activityspecialIds)
|
|
|
|
|
|
-
|
|
|
|
if tagIds != "" {
|
|
if tagIds != "" {
|
|
if tagArticleIds != "" {
|
|
if tagArticleIds != "" {
|
|
condition = ` AND ((source = 'article' AND source_id IN (` + tagArticleIds + `) ) `
|
|
condition = ` AND ((source = 'article' AND source_id IN (` + tagArticleIds + `) ) `
|
|
@@ -975,7 +915,7 @@ func (this *HomeController) NewList() {
|
|
pars = append(pars, activityIds)
|
|
pars = append(pars, activityIds)
|
|
}
|
|
}
|
|
|
|
|
|
- if lenActivityspecialIds > 0 && tagIds == "" {
|
|
+ if lenActivityspecialIds > 0 && tagIds == "" {
|
|
condition += ` OR ( source = 'activityspecial' AND source_id IN (` + utils.GetOrmInReplace(lenActivityspecialIds) + `) ` + conditionInit + ` ) `
|
|
condition += ` OR ( source = 'activityspecial' AND source_id IN (` + utils.GetOrmInReplace(lenActivityspecialIds) + `) ` + conditionInit + ` ) `
|
|
pars = append(pars, activityspecialIds)
|
|
pars = append(pars, activityspecialIds)
|
|
}
|
|
}
|