智慧园区前端大屏
shuishen
2024-12-18 9a37c5e1b2190c3f6ec71483923922189091dd52
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
<!--
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2024-10-29 13:33:11
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2024-11-12 14:24:37
 * @FilePath: \bigScreen\src\components\global\publicBox.vue
 * @Description: 
 * 
 * Copyright (c) 2024 by shuishen, All Rights Reserved. 
-->
<template>
  <div class="map-layers-change-box">
    <div class="title">
      <slot name="name"></slot>
      <slot name="close"></slot>
    </div>
 
    <div class="content">
      <slot name="content"></slot>
    </div>
  </div>
</template>
 
<script setup>
 
</script>
 
<script>
export default {
  name: 'publicBox'
}
</script>
 
<style lang="scss" scoped>
.map-layers-change-box {
  position: absolute;
  right: 540px;
  z-index: 99;
  top: 152px;
  border: 1px solid #4081CB;
  border-radius: 4px;
  background: rgba(30, 36, 50, 0.6);
  box-shadow: inset 0px 3px 7px 0px rgba(42, 138, 236, 0.95);
  pointer-events: auto;
  color: #fff;
 
  .title {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    border-bottom: 1px solid;
    border-color: rgba(32, 160, 255, 0.3);
    height: 40px;
    line-height: 40px;
    color: #FFFFFF;
    font-size: 16px;
  }
}
</style>