派生自 wuyushui/SewerAndRainNetwork

陈泽平
2021-05-31 f3ab28fd376caec5b142145d9b779d846f9fbc10
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
<template>
  <div class="report-bounced map-background">
<!--  <div class="report-bounced map-background" v-drag>-->
    <div class="public-bounced-title">
      <slot name='title'></slot>
    </div>
    <div class="report-table-content">
      <slot name='publicTable'></slot>
    </div>
  </div>
</template>
 
<script>
 
// 弹框头部拖拽
// import '@/utils/dragBoxes'
 
export default {
  name: 'Public'
}
</script>
 
<style scoped lang="less">
.report-bounced {
  z-index: 2000;
  position: fixed;
  top: 15%;
  left: 5%;
 
  .public-bounced-title {
    text-align: center;
    height: 0.3rem;
    line-height: 0.3rem;
    border-bottom: .00521rem solid @color;
 
    span {
      font-size: 14px;
      color: #fff;
    }
  }
}
</style>