|
@@ -0,0 +1,139 @@
|
|
|
+<template>
|
|
|
+ <!-- 视频播放弹窗 -->
|
|
|
+ <div class="video_dialog" ref="dialog2">
|
|
|
+ <div class="dia_title">
|
|
|
+ <div class="txt">视频详情</div>
|
|
|
+ <div class="btns">
|
|
|
+ <img @click="fullScreen" src="/image/icon/full_screen.png" alt/>
|
|
|
+ <!-- <span class="close">×</span> -->
|
|
|
+ <img @click="closedialog2" src="/image/icon/close.png"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="container" id="container">
|
|
|
+ <!-- <video :src="videoURL" autoplay loop muted></video> -->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import outputOptions from "./index.js";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "VideoDialog",
|
|
|
+ components: {},
|
|
|
+ props: {},
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ isFull: false,
|
|
|
+ video: ''
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ // 是否显示视频详情弹窗 和 视频源
|
|
|
+ // ...mapState(["videoURL"]),
|
|
|
+ // videoURL() {
|
|
|
+ // return JSON.parse(JSON.stringify(this.$store.state.videoURL));
|
|
|
+ // }
|
|
|
+
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ videoURL(val) {
|
|
|
+ this.myfunction2();
|
|
|
+ this.myfunction(val)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.myfunction(this.videoURL);
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ myfunction(videos) {
|
|
|
+ this.video = new KMedia(outputOptions("#container", videos));
|
|
|
+ },
|
|
|
+ myfunction2() {
|
|
|
+ if (this.video != null) {
|
|
|
+ this.video.closeMedia();
|
|
|
+ }
|
|
|
+ this.video = null;
|
|
|
+ document.getElementById('container').innerHTML = "";
|
|
|
+ },
|
|
|
+ // 放大视频弹窗
|
|
|
+ fullScreen() {
|
|
|
+ let dialog2 = this.$refs.dialog2;
|
|
|
+ if (this.isFull) {
|
|
|
+ dialog2.classList.remove("dialog_big");
|
|
|
+ } else {
|
|
|
+ dialog2.classList.add("dialog_big");
|
|
|
+ dialog2.style.left = "2853px";
|
|
|
+ dialog2.style.top = "90px";
|
|
|
+ }
|
|
|
+ this.isFull = !this.isFull;
|
|
|
+ },
|
|
|
+ // 关闭视频弹窗
|
|
|
+ closedialog2() {
|
|
|
+ this.myfunction2();
|
|
|
+ this.$store.commit("changeVideoURL", null);
|
|
|
+ }
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.video_dialog {
|
|
|
+ z-index: 10099;
|
|
|
+ pointer-events: all;
|
|
|
+ width: 800px;
|
|
|
+ height: 500px;
|
|
|
+ z-index: 10;
|
|
|
+ left: 2930px;
|
|
|
+ top: 300px;
|
|
|
+ position: absolute;
|
|
|
+ display: flex;
|
|
|
+ background-color: rgba(9, 24, 40, 0.95);
|
|
|
+ flex-direction: column;
|
|
|
+
|
|
|
+ .dia_title {
|
|
|
+ height: 40px;
|
|
|
+ flex-shrink: 0;
|
|
|
+ display: flex;
|
|
|
+ background: linear-gradient(to right, #00cc66, #0085b2);
|
|
|
+ color: #fff;
|
|
|
+ font-size: 24px;
|
|
|
+ line-height: 40px;
|
|
|
+ font-weight: bold;
|
|
|
+ padding: 0 15px;
|
|
|
+ flex-shrink: 0;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .close {
|
|
|
+ font-size: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btns {
|
|
|
+ width: 50px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .container {
|
|
|
+ flex: 1 1 100%;
|
|
|
+
|
|
|
+ video {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.dialog_big {
|
|
|
+ width: 980px;
|
|
|
+ height: 980px;
|
|
|
+ // transform: translate(-90px, -240px);
|
|
|
+}
|
|
|
+
|
|
|
+.hide {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+</style>
|