From 2795bef55b825acd0065d991e835c5f616ec4724 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Fri, 05 Aug 2022 18:25:35 +0800
Subject: [PATCH] mini消息盒子

---
 src/components/group/tool.vue |   31 ++++++++++++++++++++++++-------
 1 files changed, 24 insertions(+), 7 deletions(-)

diff --git a/src/components/group/tool.vue b/src/components/group/tool.vue
index d4f319f..7e33920 100644
--- a/src/components/group/tool.vue
+++ b/src/components/group/tool.vue
@@ -1,13 +1,19 @@
 <template>
 	<a-affix :offset-top="600">
 
-		<div style="padding-left:5px;">
+		<div style="padding-left:5px;" class="myButton">
 			<!-- <a-button @click="showDrawer1">
 				抽屉1
 			</a-button> -->
 			<!-- <a-button @click="showDrawer2">
 				抽屉2
 			</a-button> -->
+			<a-button @click="showMessage">
+				<a-badge status="success">
+					消息
+				</a-badge>
+				<a-icon type="message" />
+			</a-button>
 			<a-button @click="showPreview">
 				预览
 				<a-icon type="youtube" />
@@ -18,8 +24,11 @@
 			</a-button>
 			<a-button @click="showScreen">
 				{{screenModel}}
-				<a-icon type="arrows-alt" />
+				<transition name="fade">
+					<a-icon :type="iconType" />
+				</transition>
 			</a-button>
+
 
 			<!-- <a-button>
 				工具
@@ -33,13 +42,14 @@
 	export default {
 		data() {
 			return {
+				iconType: "arrows-alt",
 				screen: false,
 				screenModel: "拉伸"
 			}
 		},
 		methods: {
-			showDrawer1() {
-				this.$emit('showDrawer1')
+			showMessage() {
+				this.$emit('showMessage')
 			},
 			showModal() {
 				this.$emit('showModal')
@@ -51,14 +61,21 @@
 				this.$emit('showScreen')
 				if (this.screen) {
 					this.screenModel = "拉伸";
-				}else{
+					this.iconType = "arrows-alt";
+				} else {
 					this.screenModel = "缩小";
+					this.iconType = "shrink"
 				}
-				this.screen=!this.screen;
+				this.screen = !this.screen;
 			}
 		},
 	}
 </script>
 
-<style>
+<style lang="less">
+	.myButton {
+		button {
+			min-width: 90px;
+		}
+	}
 </style>

--
Gitblit v1.9.1