|
@@ -860,7 +860,9 @@ func (this *ActivityCoAntroller) Detail() {
|
|
|
return
|
|
|
}
|
|
|
if len(industrialList) == 0 {
|
|
|
- industrialList = make([]*models.IndustrialManagementRep, 0)
|
|
|
+ item := new(models.IndustrialManagementRep)
|
|
|
+ item.IndustryName = activityInfo.Label
|
|
|
+ industrialList = append(industrialList, item)
|
|
|
} else {
|
|
|
var industrialManagementId string
|
|
|
for k, v := range industrialList {
|