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/layouts/baseLayout.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/components/layouts/baseLayout.vue b/src/components/layouts/baseLayout.vue
index af50842..bf72da2 100644
--- a/src/components/layouts/baseLayout.vue
+++ b/src/components/layouts/baseLayout.vue
@@ -12,7 +12,7 @@
 		<a-layout-footer>
 			<AplayerBox />
 			<tagFooter />
-			<MyVideo ref="MyVideo" @closeMyVideo="closeMyVideo"/>
+			<MyVideo ref="MyVideo" @closeMyVideo="closeMyVideo" />
 
 			<a-button v-if="miniVideoPlayData!=null && showMiniBox" class="fadeInRight"
 				style="position: fixed;right: 0px;bottom: 130px;" @click="showMyVideo(miniVideoPlayData)">
@@ -32,7 +32,8 @@
 	// Dplayer Api地址
 	// http://dplayer.js.org/ 
 	import tagHeader from "../fixed/header.vue"
-	import tagFooter from "../fixed/footer.vue"
+	// import tagFooter from "../fixed/footer.vue"
+	const tagFooter = () => import("../fixed/footer.vue")
 	import AplayerBox from "../mini/Aplayer.vue"
 	import MyVideo from "../group/MyVideo.vue"
 	export default {
@@ -152,6 +153,8 @@
 		-webkit-animation-iteration-count: 1;
 	}
 
+
+
 	.fadeInLeft {
 		-webkit-animation-name: "fadeInLeft";
 		-webkit-animation-duration: 1s;

--
Gitblit v1.9.1