From 3c71cc74e6dd5f1015329c64e11e8ec1cd7a97c1 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Wed, 31 Aug 2022 18:11:16 +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