| | |
| | | <div class="eventList"> |
| | | <div class="eventItem" v-for="(item, index) in dataList" :key="index"> |
| | | <image v-if="item.isImage" :src="item.thumbnail" mode="aspectFill" @click="detailHandle(item)" /> |
| | | <div v-else-if="item.isVideo" class="videoBox" @click="detailHandle(item)"> |
| | | <div |
| | | v-else-if="item.isVideo" |
| | | class="videoBox" |
| | | :style="item.thumbnailUrl ? { backgroundImage: `url(${item.thumbnailUrl})`, backgroundSize: 'cover', backgroundPosition: 'center' } : {}" |
| | | @click="detailHandle(item)" |
| | | > |
| | | <div class="playIcon"></div> |
| | | </div> |
| | | <div class="informationDisplay"> |