From 019990450fa60b31f3a055a4e1f3fc7609843291 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Mon, 17 Jan 2022 02:22:52 +0800
Subject: [PATCH] Aplayer/全局键盘监听

---
 src/components/swichLabel/main1-show.vue |   18 +++++++++++++-----
 1 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/src/components/swichLabel/main1-show.vue b/src/components/swichLabel/main1-show.vue
index b53280b..de9cf69 100644
--- a/src/components/swichLabel/main1-show.vue
+++ b/src/components/swichLabel/main1-show.vue
@@ -2,13 +2,13 @@
 	<div>
 		<div class="blog-drawer">
 			<a-drawer placement="left" :closable="false" :visible="visible1" :getContainer="'body'"
-				:after-visible-change="afterVisibleChange" @close="onClose1" :zIndex="10" :width=270
+				:after-visible-change="afterVisibleChange" @close="onClose1" :zIndex="90" :width=270
 				:bodyStyle="{padding:'0px'}" :wrapStyle="{padding:'0px',top:'60px'}">
 				<boxLeft></boxLeft>
 			</a-drawer>
 
 			<a-drawer placement="right" :closable="false" :visible="visible2" :getContainer="'body'"
-				:after-visible-change="afterVisibleChange" @close="onClose2" :zIndex="10" :width=270
+				:after-visible-change="afterVisibleChange" @close="onClose2" :zIndex="90" :width=270
 				:bodyStyle="{padding:'0px'}" :wrapStyle="{padding:'0px',top:'60px'}">
 				<boxRight></boxRight>
 			</a-drawer>
@@ -28,7 +28,7 @@
 					<a-button @click="showDrawer2">
 						小抽屉2
 					</a-button>
-					<router-view></router-view>
+					<router-view class="fade"></router-view>
 				</a-col>
 				
 				<a-col v-bind="colApiRight" ref="myDrawer">
@@ -44,15 +44,20 @@
 	import boxLeft from "../group/boxLeft.vue"
 	import boxRight from "../group/boxRight.vue"
 	import articleList from "../group/articleList.vue"
+	import articleListScorll from "../group/articleListScorll.vue"
 
 	export default {
 
 		components: {
 			boxLeft,
 			boxRight,
-			articleList
+			articleList,
+			articleListScorll,
+			
+			
 		},
 		methods: {
+			 
 			afterVisibleChange(val) {},
 			showDrawer1() {
 				this.visible1 = true;
@@ -140,6 +145,9 @@
 		background-color: white;
 		border-radius: 15px;
 	}
+	.holdHeight{
+		min-height: 780px;
+	}
 
 	.article-detail {
 		max-height: 750px;
@@ -155,7 +163,7 @@
 	/*左右两边的盒子容器*/
 	.blog-cell {
 		opacity: 0.8;
-		padding: 0px 25px 10px;
+		padding: 0px 14px 10px;
 	}
 
 	/*左边部分*/

--
Gitblit v1.9.1