inleft
2022-08-12 0dd41bd8cee430d3a948b89c664cb511c400993c
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<template>
    <a-affix :offset-top="600">
 
        <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" />
            </a-button>
            <a-button @click="showModal">
                日志
                <a-icon type="plus-circle" />
            </a-button>
            <a-button @click="showScreen">
                {{screenModel}}
                <transition name="fade">
                    <a-icon :type="iconType" />
                </transition>
            </a-button>
            <a-button @click="addLink" v-if="showHidenButton">
                加链
                <a-icon type="smile" />
            </a-button>
 
            <!-- <a-button>
                工具
                <a-icon type="tool" style="margin-left: 0px;" />
            </a-button> -->
        </div>
    </a-affix>
</template>
 
<script>
    import myConstant from "../../config/myConstant.js"
 
    export default {
        data() {
            return {
                iconType: "arrows-alt",
                screen: false,
                screenModel: "拉伸",
                showHidenButton: false,
            }
        },
        mounted() {
            let tempVisitorData = localStorage.getItem(myConstant.visitorDataKey);
            if (tempVisitorData != null && JSON.parse(tempVisitorData).nickName == myConstant.userName) {
                //this.$message.info("认证成功..")
                this.showHidenButton = true
            }
        },
        methods: {
            addLink() {
                this.$emit('addLink')
            },
            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 lang="less">
    .myButton {
        button {
            min-width: 90px;
        }
    }
</style>