JLBA202505130001_关于吉林银行新建AI智能培训系统的需求_样式调整

This commit is contained in:
杨航
2025-12-22 15:59:22 +08:00
parent 10925d26dc
commit 6c2d0f6f52
3 changed files with 22 additions and 9 deletions
+18 -5
View File
@@ -60,10 +60,10 @@
<!-- 试题问题反馈 -->
<!-- <RadioSubjectRequest v-if="[8].indexOf(type) >= 0 && dataInfo.qnsTyp !== 'ES'" :item="dataInfo" :mode="mode" @subject_click="subject_click" /> -->
<!-- 段落图片视频预览 -->
<view v-if="type === 3" style="overflow: hidden">
<view v-if="type === 3" style="overflow: hidden;padding-top: 10rpx;">
<ImagePreview class="cont-img-box" v-for="item in (dataInfo.imageAddrs || []) "
:imgId="item" :previewDetail="false" @click="previewImage(item)"></ImagePreview>
<VideoPreview class="cont-img-box" v-if="(dataInfo.vidoAddrs || []).length > 0"
<VideoPreview class="cont-img-box cont-video-box" v-if="(dataInfo.vidoAddrs || []).length > 0"
:fileId="dataInfo.vidoAddrs[0].vidAddr"
:picId="dataInfo.vidoAddrs[0].vidImgAddr" @click="previewVideo(dataInfo.vidoAddrs[0])">
</VideoPreview>
@@ -913,6 +913,8 @@
}
.file-items{
float: left;
width: 100%;
padding-top: 12rpx;
.file-item {
line-height: 36rpx;
@@ -921,14 +923,25 @@
color: #06f;
}
}
.cont-img-box {
width: 433rpx;
height: 269rpx;
float: left;
width: calc(33% - 13.34rpx);
height: 130rpx;
border-radius: 15rpx;
overflow: hidden;
background-color: #fafafa;
margin-bottom: 20rpx;
margin-right: 20rpx;
&.cont-video-box{
width: 433rpx;
height: 269rpx;
margin-right: 0rpx;
}
&:nth-child(3n){
margin-right: 0;
}
}
}