Browse Source

修改视频 图片 切换

wangqin
Joe 1 year ago
parent
commit
c58890db59
  1. 44
      ruoyi-ui/src/views/JiHeExpressway/components/Video/index.vue
  2. BIN
      ruoyi-ui/src/views/JiHeExpressway/components/Video/view.png

44
ruoyi-ui/src/views/JiHeExpressway/components/Video/index.vue

@ -1,18 +1,21 @@
<template> <template>
<div class="video-container"> <div class="video-container">
<!-- <div class="header"> <div class="header">
<div class="left"> <div class="left">
<div class="radio"> <div class="radio">
<span>图像</span> <span @click="active = 'img'" :class="{ active: active === 'img' }">图像</span>
<span class="active">视频</span> <span @click="active = 'video'" :class="{ active: active === 'video' }">视频</span>
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<div class="btn">2X</div> <!-- <div class="btn">2X</div>
<div class="btn">全屏</div> <div class="btn">全屏</div> -->
</div> </div>
</div> --> </div>
<Video class="video-stream" :pileNum="pileNum" :camId="camId" :url="url" /> <Transition name="fade" mode="out-in">
<Video v-if="active === 'video'" class="video-stream" :pileNum="pileNum" :camId="camId" :url="url" />
<img v-else src="./view.png" />
</Transition>
</div> </div>
</template> </template>
@ -37,6 +40,11 @@ export default {
type: String, type: String,
default: null default: null
} }
},
data() {
return {
active: "video"
}
} }
} }
</script> </script>
@ -46,6 +54,18 @@ export default {
position: relative; position: relative;
background-color: #000; background-color: #000;
height: 240px; height: 240px;
display: flex;
justify-content: center;
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.24s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.header { .header {
position: absolute; position: absolute;
@ -54,7 +74,7 @@ export default {
width: 100%; width: 100%;
z-index: 999; z-index: 999;
display: flex; display: flex;
padding: 3px 6px; padding: 6px;
justify-content: space-between; justify-content: space-between;
.left, .left,
@ -113,10 +133,14 @@ export default {
} }
} }
.video-stream,
img {
height: 100%;
}
.video-stream { .video-stream {
width: 100%; width: 100%;
height: 100%;
// height: 240px;
} }
} }
</style> </style>

BIN
ruoyi-ui/src/views/JiHeExpressway/components/Video/view.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Loading…
Cancel
Save