修复论坛项图片底部间距问题 调整BI组件z-index值防止遮挡 优化视频海报展示逻辑 限制评论输入框最大高度 修复搜索框占位符显示逻辑 添加分页项样式 移除评论编辑框底部边框 优化BI组件API请求方法
17 lines
924 B
Plaintext
17 lines
924 B
Plaintext
<div class="item-box item-forum">
|
|
<item-head :itemdata="item" :page="page"></item-head>
|
|
<a v-if="item.title" class="title" :href="item.url" target="_blank">{{ item.title }}</a>
|
|
<a class="message two-line-display" :href="item.url" target="_blank">{{ item.content }}</a>
|
|
<a class="picture flexacenter" :href="item.url" target="_blank" v-if="item.images?.length != 0 || item.videos?.length != 0">
|
|
<img class="picture-item" v-for="(item, index) in item.images" :key="index" :src="item.url" alt="">
|
|
|
|
<template v-for="(item, index) in item.videos" :key="index">
|
|
<div v-if="item.posterurl" class="picture-videos flexacenter">
|
|
<img class="picture-item" :src="item.posterurl" alt="">
|
|
<img class="icon-play" src="/img/videoplay.png" alt="">
|
|
</div>
|
|
</template>
|
|
</a>
|
|
|
|
<item-bottom :itemdata="item" :page="page"></item-bottom>
|
|
</div> |