inleft
2022-08-09 146176c4bfc7e936026fc02d96fdc175738d9e14
src/components/group/tool.vue
@@ -1,22 +1,39 @@
<template>
   <a-affix :offset-top="600">
      <div style="padding-left:5px;">
         <a-button @click="showDrawer1">
      <div style="padding-left:5px;" class="myButton">
         <!-- <a-button @click="showDrawer1">
            抽屉1
         </a-button>
         </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" />
         </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 +41,41 @@
<script>
   export default {
      data() {
         return {}
         return {
            iconType: "arrows-alt",
            screen: false,
            screenModel: "拉伸"
         }
      },
      methods: {
         showDrawer1() {
            this.$emit('showDrawer1')
         showMessage() {
            this.$emit('showMessage')
         },
         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">
   .myButton {
      button {
         min-width: 90px;
      }
   }
</style>