|
@@ -1,8 +1,9 @@
|
|
<template>
|
|
<template>
|
|
<div class="videoListComponent">
|
|
<div class="videoListComponent">
|
|
<div class="max-big-for-box">
|
|
<div class="max-big-for-box">
|
|
- <H5PlayerVideo style="margin:10px 0 0;"
|
|
|
|
- v-for="(item,index) in videoList" :key="index" :videoProps="item"></H5PlayerVideo>
|
|
|
|
|
|
+ <mpegts-video style="display: inline-block" :videoProps="item" v-for="(item,index) in videoList" :key="index"></mpegts-video>
|
|
|
|
+ <!--<H5PlayerVideo style="margin:10px 0 0;"-->
|
|
|
|
+ <!--v-for="(item,index) in videoList" :key="index" :videoProps="item"></H5PlayerVideo>-->
|
|
<img v-if="!videoList[0]" class="null-img" src="@/assets/ZDimages/null-data-1.png">
|
|
<img v-if="!videoList[0]" class="null-img" src="@/assets/ZDimages/null-data-1.png">
|
|
</div>
|
|
</div>
|
|
<div class="pagination-max-box">
|
|
<div class="pagination-max-box">
|
|
@@ -16,19 +17,21 @@
|
|
/>
|
|
/>
|
|
<p class="null-pagination-p"></p>
|
|
<p class="null-pagination-p"></p>
|
|
</div>
|
|
</div>
|
|
- <fullH5PlayerVideo v-if="fullVideoType" :fullVideoProps="fullVideoProps"></fullH5PlayerVideo>
|
|
|
|
|
|
+ <!--<fullH5PlayerVideo v-if="fullVideoType" :fullVideoProps="fullVideoProps"></fullH5PlayerVideo>-->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import { iotCameraFindByCondition } from "@/api/index";
|
|
import { iotCameraFindByCondition } from "@/api/index";
|
|
import H5PlayerVideo from '@/components/H5PlayerVideo/H5PlayerVideo.vue';
|
|
import H5PlayerVideo from '@/components/H5PlayerVideo/H5PlayerVideo.vue';
|
|
import fullH5PlayerVideo from '@/components/fullH5PlayerVideo/fullH5PlayerVideo.vue'
|
|
import fullH5PlayerVideo from '@/components/fullH5PlayerVideo/fullH5PlayerVideo.vue'
|
|
|
|
+ import mpegtsVideo from '@/components/mpegtsVideo/mpegtsVideo.vue'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'videoListComponent',
|
|
name: 'videoListComponent',
|
|
components: {
|
|
components: {
|
|
H5PlayerVideo,
|
|
H5PlayerVideo,
|
|
- fullH5PlayerVideo
|
|
|
|
|
|
+ fullH5PlayerVideo,
|
|
|
|
+ mpegtsVideo
|
|
},
|
|
},
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|