|
@@ -2618,6 +2618,12 @@ func (this *ActivityCoAntroller) LabelTypeListV5() {
|
|
|
br.ErrMsg = "获取失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
+ mapCity, err := services.GetActivityCityResp()
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
mapActivity := make(map[int][]*models.CygxActivityLabelList)
|
|
|
mapkeyWord := make(map[string]string)
|
|
|
for _, v := range listActivity {
|
|
@@ -2629,6 +2635,7 @@ func (this *ActivityCoAntroller) LabelTypeListV5() {
|
|
|
v.ActivityTypeId = 2
|
|
|
}
|
|
|
item := new(models.CygxActivityLabelList)
|
|
|
+ item.City = mapCity[v.KeyWord]
|
|
|
item.KeyWord = services.LabelStrV5(v.KeyWord, v.IsShowSubjectName, v.TemporaryLabel)
|
|
|
if _, ok := mapkeyWord[fmt.Sprint(v.ActivityTypeId, "-", item.KeyWord)]; ok {
|
|
|
continue
|
|
@@ -2660,50 +2667,6 @@ func (this *ActivityCoAntroller) LabelTypeListV5() {
|
|
|
//var sqlExport string
|
|
|
resp := new(models.ActivityTypeListHomeResp)
|
|
|
for k, v := range list {
|
|
|
- // 如果是C类电话会就不展示内容,且合并到分析师电话会
|
|
|
- //if v.ActivityTypeId == utils.C_CLASS_ACTIVITY_TYPE_ID {
|
|
|
- // continue
|
|
|
- //}
|
|
|
- //var condition string
|
|
|
- //conditionActivity, err := services.GetActivityonditionList(user, "", chartPermissionIds, whichDay, activeState, "", isPower, 0, "", 0, 1)
|
|
|
- //if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
- // br.Msg = "获取失败"
|
|
|
- // br.ErrMsg = "获取活动权限数据失败,Err:" + err.Error()
|
|
|
- // return
|
|
|
- //}
|
|
|
- //condition += `AND art.is_limit_people = 1 ` + conditionActivity
|
|
|
- //sortTime = ` mintimesort ASC `
|
|
|
- //labelList, err := models.GetActivityLabelListAll(condition, sortTime, pars, startSize, pageSize)
|
|
|
- //if err != nil {
|
|
|
- // br.Msg = "获取失败"
|
|
|
- // br.ErrMsg = "获取失败,Err:" + err.Error()
|
|
|
- // return
|
|
|
- //}
|
|
|
- //var itemslabe []*models.CygxActivityLabelList
|
|
|
-
|
|
|
- //mapkeyWord := make(map[string]string)
|
|
|
- //标签字段关联的产业与标签处理
|
|
|
- //for k2, v2 := range labelList {
|
|
|
- // if v2.YidongActivityId != 0 {
|
|
|
- // v2.IsExternalLabel = true
|
|
|
- // }
|
|
|
- // if v2.ActivityTypeId == 7 {
|
|
|
- // v2.ActivityTypeId = 2
|
|
|
- // }
|
|
|
- // if v.ActivityTypeId == 7 {
|
|
|
- // v.ActivityTypeId = 2
|
|
|
- // }
|
|
|
- // if utf8.RuneCountInString(v2.City) != 2 {
|
|
|
- // labelList[k2].City = ""
|
|
|
- // }
|
|
|
- // labelList[k2].KeyWord = services.LabelStrV5(v2.KeyWord, v2.IsShowSubjectName, v2.TemporaryLabel)
|
|
|
- // labelList[k2].ImgUrlBg = v.ImgUrlBgs
|
|
|
- // if _, ok := mapkeyWord[fmt.Sprint(v.ActivityTypeId, "-", labelList[k2].KeyWord)]; ok {
|
|
|
- // continue
|
|
|
- // }
|
|
|
- // itemslabe = append(itemslabe, labelList[k2])
|
|
|
- // mapkeyWord[fmt.Sprint(v.ActivityTypeId, "-", labelList[k2].KeyWord)] = labelList[k2].KeyWord
|
|
|
- //}
|
|
|
if len(mapActivity[v.ActivityTypeId]) > 0 {
|
|
|
for _, v2 := range mapActivity[v.ActivityTypeId] {
|
|
|
v2.ImgUrlBg = v.ImgUrlBgs
|