inleft
2022-01-21 f9c38ed1b72fc96b96c1d3ffdcc1a66b03bd3b73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<template>
    <a-affix :offset-top="600">
 
        <div style="padding-left:5px;">
            <!-- <a-button @click="showDrawer1">
                抽屉1
            </a-button> -->
            <!-- <a-button @click="showDrawer2">
                抽屉2
            </a-button> -->
            <a-button @click="showModal">
                日志
                <a-icon type="plus-circle" />
            </a-button>
            <a-button @click="showScreen">
                {{screenModel}}
                <a-icon type="arrows-alt" />
            </a-button>
 
            <!-- <a-button>
                工具
                <a-icon type="tool" style="margin-left: 0px;" />
            </a-button> -->
        </div>
    </a-affix>
</template>
 
<script>
    export default {
        data() {
            return {
                screen: false,
                screenModel: "拉伸"
            }
        },
        methods: {
            showDrawer1() {
                this.$emit('showDrawer1')
            },
            showModal() {
                this.$emit('showModal')
            },
            showScreen() {
                this.$emit('showScreen')
                if (this.screen) {
                    this.screenModel = "拉伸";
                }else{
                    this.screenModel = "缩小";
                }
                this.screen=!this.screen;
            }
        },
    }
</script>
 
<style>
</style>