From 271ca6cb0ee2ff0a789bf74d1821e7891a7043bb Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Tue, 30 Aug 2022 21:57:42 +0800
Subject: [PATCH] 自定义表情组件

---
 src/components/group/MyVideo.vue |   39 ++++++++++++++++++++++++++++++++++-----
 1 files changed, 34 insertions(+), 5 deletions(-)

diff --git a/src/components/group/MyVideo.vue b/src/components/group/MyVideo.vue
index 17fc80c..dd11d19 100644
--- a/src/components/group/MyVideo.vue
+++ b/src/components/group/MyVideo.vue
@@ -1,10 +1,11 @@
 <template>
 	<div class="myModal">
-		<a-modal v-model="visible" title="视频盒子" :footer="null" :mask="false" :maskClosable="true"
-			:bodyStyle="{'overflow':'overlay','maxHeight': '750px'}" :afterClose="afterClose">
-			<videoDetail ref="videoDetail"></videoDetail>
+		<a-modal v-drag-modal v-model="visible" title="视频盒子" :width="myWidth" :footer="null" :mask="false"
+			:maskClosable="true" :bodyStyle="{'overflow':'overlay','height': '700px'}" :afterClose="afterClose">
+			<videoDetail ref="videoDetail" :showFade="showFade"></videoDetail>
 		</a-modal>
 	</div>
+
 </template>
 
 <script>
@@ -13,6 +14,14 @@
 	export default {
 		components: {
 			videoDetail,
+		},
+		mounted() {
+			this.juseWidth(document.body.clientWidth)
+			window.onresize = () => {
+				return (() => {
+					this.juseWidth(document.body.clientWidth)
+				})();
+			};
 		},
 		watch: {
 			// '$route'(to, from) {
@@ -36,10 +45,27 @@
 			return {
 				visible: false,
 				articleId: "",
+				myWidth: 410,
+				showFade: true,
 			}
 		},
 		methods: {
+			juseWidth(screenWidth) {
+				this.showFade = true;
+				if (screenWidth > 1000) {
+					this.myWidth = 1000
+				} else if (screenWidth > 767) {
+					this.myWidth = 600
+				} else {
+					this.myWidth = 410
+					this.showFade = false;
+				}
+			},
 			showModal(param) {
+				if (this.$route.path == "/videoDetail") {
+					this.$message.info("已经在播放页面啦..")
+					return
+				}
 				this.visible = true;
 				this.$nextTick(function() {
 					this.$refs.videoDetail.showVideo(param)
@@ -49,11 +75,14 @@
 				this.visible = false;
 			},
 			afterClose() {
+				//关闭视频播放
+				this.$refs.videoDetail.$refs.videoPlayBox.pauseMyVideo()
+
 				this.$emit("closeMyVideo")
 			}
 		},
 	}
 </script>
-<style scoped>
-
+<style lang="less">
+	
 </style>

--
Gitblit v1.9.1