|
@@ -24,7 +24,8 @@
|
|
|
scope.row.userStudyRecordPhotoList.length
|
|
|
"
|
|
|
>
|
|
|
- <li class="liImgs" v-if="scope.row.videoUrl">
|
|
|
+ <template v-for="(its, inds) in scope.row.userStudyRecordPhotoList">
|
|
|
+ <li class="liImgs" v-if="scope.row.videoUrl&&$methodsTools.onlyForma(its.createTime)>scope.row.videoTime&&(inds==0||$methodsTools.onlyForma(scope.row.userStudyRecordPhotoList[inds-1].createTime)<=scope.row.videoTime)" key="i0101">
|
|
|
<video
|
|
|
controls
|
|
|
preload
|
|
@@ -36,11 +37,7 @@
|
|
|
{{ scope.row.videoTime }}
|
|
|
</div>
|
|
|
</li>
|
|
|
- <li
|
|
|
- v-for="(its, inds) in scope.row.userStudyRecordPhotoList"
|
|
|
- :key="inds"
|
|
|
- class="liImgs"
|
|
|
- >
|
|
|
+ <li class="liImgs" :key="inds">
|
|
|
<el-image
|
|
|
style="width: 100%; height: 100%"
|
|
|
:src="$methodsTools.splitImgHost(its.photo)"
|
|
@@ -62,6 +59,8 @@
|
|
|
{{ $methodsTools.onlyForma(its.createTime) }}
|
|
|
</div>
|
|
|
</li>
|
|
|
+ </template>
|
|
|
+
|
|
|
<div style="clear: both"></div>
|
|
|
</ul>
|
|
|
<p v-else style="text-align: center; width: 100%">暂无拍照数据</p>
|