智慧农业大数据平台
xiebin
2022-11-16 3dc278f10a4c3e3db7ce3a445bed710bdc88916e
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
<template>
    <div class="current-wrapper" @click.self="close">
        <div ref="publicBox" :class="className">
            <div class="header">
                <slot name="public-box-header"></slot>
            </div>
            <div class="content">
                <slot name="public-box-content"></slot>
            </div>
        </div>
    </div>
</template>
 
<script>
 
export default {
    name: 'PublicBox',
    props: ['className', 'closeFlag'],
    data () {
        return {
        }
    },
    created () {
    },
    methods: {
        close () {
            this.$parent[this.closeFlag] = false
        }
    }
}
</script>
 
<style scoped lang='scss'>
.current-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(7, 7, 7, 0.4);
}
</style>