|
@@ -225,17 +225,24 @@ func HandleActivityListButton(list []*models.ActivityDetail, user *models.WxUser
|
|
|
list[k].ActivityTypeName = "买方研选电话会"
|
|
|
list[k].ImgUrlText = utils.YAN_XUAN_IMG
|
|
|
}
|
|
|
- if v.ActivityType != 0 {
|
|
|
- if mapAddress[v.City] != "" {
|
|
|
- list[k].ImgUrl = mapAddress[v.City]
|
|
|
+ if v.SourceType == 1 {
|
|
|
+ if v.ActivityType == 0 {
|
|
|
+ if mapAddress[v.City] != "" {
|
|
|
+ list[k].ImgUrl = mapAddress[v.City]
|
|
|
+ } else {
|
|
|
+ list[k].ImgUrl = mapAddress["其它"]
|
|
|
+ }
|
|
|
} else {
|
|
|
- list[k].ImgUrl = mapAddress["其它"]
|
|
|
+ if mapChart[v.ChartPermissionName] != "" {
|
|
|
+ list[k].ImgUrl = mapChart[v.ChartPermissionName]
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
if mapChart[v.ChartPermissionName] != "" {
|
|
|
list[k].ImgUrl = mapChart[v.ChartPermissionName]
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
expertTxt, _ := GetReportContentTextSub(v.Expert)
|
|
|
list[k].Expert = expertTxt
|
|
|
if v.IsHideAppointment == 0 {
|