From e45377e8f94faf25a98b9e5a645055b5fade4818 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Thu, 14 Jul 2022 15:52:29 +0800 Subject: [PATCH] 邮件回复样式更新 --- src/components/group/tool.vue | 24 +++++++++++++++++------- 1 files changed, 17 insertions(+), 7 deletions(-) diff --git a/src/components/group/tool.vue b/src/components/group/tool.vue index 05d4ea7..cb4ca7b 100644 --- a/src/components/group/tool.vue +++ b/src/components/group/tool.vue @@ -8,13 +8,19 @@ <!-- <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" /> </a-button> <a-button @click="showScreen"> {{screenModel}} - <a-icon type="arrows-alt" /> + <transition name="fade"> + <a-icon :type="iconType" /> + </transition> </a-button> <!-- <a-button> @@ -29,29 +35,33 @@ export default { data() { 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 = "拉伸"; - }else{ + this.iconType = "arrows-alt"; + } else { this.screenModel = "缩小"; + this.iconType = "shrink" } - this.screen=!this.screen; + this.screen = !this.screen; } }, } </script> -<style> +<style lang="less"> + </style> -- Gitblit v1.9.1