|
@ -428,8 +428,8 @@ export default { |
|
|
this.exhibition.frequency = exhib.Frequency; |
|
|
this.exhibition.frequency = exhib.Frequency; |
|
|
this.exhibition.online = exhib.IsVirtualEvent; |
|
|
this.exhibition.online = exhib.IsVirtualEvent; |
|
|
this.exhibition.organizers = exhib.Organizers; |
|
|
this.exhibition.organizers = exhib.Organizers; |
|
|
this.exhibition.videos = ""; |
|
|
|
|
|
this.exhibition.gallery = ""; |
|
|
|
|
|
|
|
|
this.exhibition.videos = exhib.Videos; |
|
|
|
|
|
this.exhibition.gallery = exhib.Images; |
|
|
this.exhibition.venues = exhib.Venues; |
|
|
this.exhibition.venues = exhib.Venues; |
|
|
this.exhibition.categories = exhib.MainCategories; |
|
|
this.exhibition.categories = exhib.MainCategories; |
|
|
this.exhibition.subcategories = exhib.SubCategories; |
|
|
this.exhibition.subcategories = exhib.SubCategories; |
|
@ -457,15 +457,15 @@ export default { |
|
|
}, |
|
|
}, |
|
|
setSideBarList() { |
|
|
setSideBarList() { |
|
|
|
|
|
|
|
|
if (this.relatedservicelist.size > 0) { |
|
|
|
|
|
|
|
|
if (this.relatedservicelist.length > 0) { |
|
|
this.fixBarList.push({ id: "relatedServices", title: "Related Services", show: true }); |
|
|
this.fixBarList.push({ id: "relatedServices", title: "Related Services", show: true }); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (this.exhibition.videos.size > 0 || this.exhibition.gallery.size > 0) { |
|
|
|
|
|
|
|
|
if (this.exhibition.videos.length > 0 || this.exhibition.gallery.length > 0) { |
|
|
this.fixBarList.push({ id: "photoGallery", title: "Photo & Video Gallery", show: true }); |
|
|
this.fixBarList.push({ id: "photoGallery", title: "Photo & Video Gallery", show: true }); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (this.exhibition.venues) { |
|
|
|
|
|
|
|
|
if (this.exhibition.venues.length > 0) { |
|
|
this.fixBarList.push({ id: "venue", title: "Venue", show: true }); |
|
|
this.fixBarList.push({ id: "venue", title: "Venue", show: true }); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|