From 74344a2ec388b78fe906a22c31f8fdb77fc60b12 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Fri, 04 Mar 2022 15:55:59 +0800
Subject: [PATCH] 404页面优化,页面响应式变化适配

---
 src/components/group/tool.vue |   54 ++++++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 44 insertions(+), 10 deletions(-)

diff --git a/src/components/group/tool.vue b/src/components/group/tool.vue
index 88b4c2b..18522b5 100644
--- a/src/components/group/tool.vue
+++ b/src/components/group/tool.vue
@@ -2,21 +2,31 @@
 	<a-affix :offset-top="600">
 
 		<div style="padding-left:5px;">
-			<a-button @click="showDrawer1">
+			<!-- <a-button @click="showDrawer1">
 				抽屉1
-			</a-button>
+			</a-button> -->
 			<!-- <a-button @click="showDrawer2">
 				抽屉2
 			</a-button> -->
+			<a-button @click="showPreview">
+				预览
+				<a-icon type="youtube" />
+			</a-button>
 			<a-button @click="showModal">
 				日志
-				<a-icon type="plus-circle" style="margin-left: 0px;" />
+				<a-icon type="plus-circle" />
+			</a-button>
+			<a-button @click="showScreen">
+				{{screenModel}}
+				<transition name="fade">
+					<a-icon :type="iconType" />
+				</transition>
 			</a-button>
 
-			<a-button>
+			<!-- <a-button>
 				工具
 				<a-icon type="tool" style="margin-left: 0px;" />
-			</a-button>
+			</a-button> -->
 		</div>
 	</a-affix>
 </template>
@@ -24,18 +34,42 @@
 <script>
 	export default {
 		data() {
-			return {}
+			return {
+				iconType: "arrows-alt",
+				screen: false,
+				screenModel: "拉伸"
+			}
 		},
 		methods: {
-			showDrawer1() {
-				this.$emit('showDrawer1')
-			},
 			showModal() {
 				this.$emit('showModal')
+			},
+			showPreview() {
+				this.$emit('showPreview')
+			},
+			showScreen() {
+				this.$emit('showScreen')
+				if (this.screen) {
+					this.screenModel = "拉伸";
+					this.iconType = "arrows-alt";
+				} else {
+					this.screenModel = "缩小";
+					this.iconType = "shrink"
+				}
+				this.screen = !this.screen;
 			}
 		},
 	}
 </script>
 
-<style>
+<style lang="less">
+	.fade-enter-active,
+	.fade-leave-active {
+		transition: opacity .5s;
+	}
+
+	.fade-enter,
+	.fade-leave-to {
+		opacity: 0;
+	}
 </style>

--
Gitblit v1.9.1