From c3aa826406d52957d6f98d0ecd4b77413d5ce908 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Mon, 29 Aug 2022 18:23:08 +0800 Subject: [PATCH] 统计模块异步加载 --- src/components/layouts/baseLayout.vue | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 53 insertions(+), 7 deletions(-) diff --git a/src/components/layouts/baseLayout.vue b/src/components/layouts/baseLayout.vue index b344246..bf72da2 100644 --- a/src/components/layouts/baseLayout.vue +++ b/src/components/layouts/baseLayout.vue @@ -5,32 +5,75 @@ <tag-Header /> </a-layout-header> - <router-view ></router-view> + <keep-alive> + <router-view @showMyVideo="showMyVideo" @detailBackAction="detailBackAction"></router-view> + </keep-alive> <a-layout-footer> <AplayerBox /> <tagFooter /> + <MyVideo ref="MyVideo" @closeMyVideo="closeMyVideo" /> + + <a-button v-if="miniVideoPlayData!=null && showMiniBox" class="fadeInRight" + style="position: fixed;right: 0px;bottom: 130px;" @click="showMyVideo(miniVideoPlayData)"> + {{miniBoxContent}} + <a-icon type="youtube" style="transform: scale(1.5);" /> + </a-button> </a-layout-footer> + + <a-back-top> + <a-icon type="up" />回到顶部 + </a-back-top> + </a-layout> </template> <script> + // 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 { components: { tagHeader, tagFooter, AplayerBox, + MyVideo, }, data() { return { - + miniVideoPlayData: null, + firstQuery: true, + showMiniBox: false, + miniBoxContent: "视频盒子", } }, methods: { - + showMyVideo(param) { + this.miniVideoPlayData = param; + this.$refs.MyVideo.showModal(param); + }, + detailBackAction(param) { + this.miniVideoPlayData = param; + this.closeMyVideo() + }, + closeMyVideo() { + if (this.firstQuery) { + this.firstQuery = !this.firstQuery; + this.showMiniBox = !this.showMiniBox; + this.$notification.info({ + message: '视频盒子最小化啦..', + placement: 'bottomRight', + }); + + setTimeout(() => { + this.miniBoxContent = ""; + }, 6000); + } + }, // 下载文件 down: function() { console.log(111); @@ -64,11 +107,8 @@ .ant-layout {} .ant-layout-header { - - // background-color: #ffffff; backdrop-filter: saturate(180%) blur(1em); -webkit-backdrop-filter: blur(5px); - background: linear-gradient(90deg, rgba(247, 149, 51, 0.101961) 0, rgba(243, 112, 85, 0.101961) 15%, rgba(239, 78, 123, 0.101961) 30%, rgba(161, 102, 171, 0.101961) 44%, rgba(80, 115, 184, 0.101961) 58%, rgba(16, 152, 173, 0.101961) 72%, rgba(7, 179, 155, 0.101961) 86%, rgba(109, 186, 130, 0.101961) 100%); } @@ -86,6 +126,10 @@ opacity: 0.8; color: #757575; } + } + + .ant-timeline-item-head { + background-color: transparent !important; } } @@ -109,6 +153,8 @@ -webkit-animation-iteration-count: 1; } + + .fadeInLeft { -webkit-animation-name: "fadeInLeft"; -webkit-animation-duration: 1s; -- Gitblit v1.9.1