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
| <template>
| <div class="legend-panel">
|
| <div class="legend-icon unactive">
|
| <i class="el-icon-more-outline"></i>
| <span >图例</span>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: 'LegendPanel'
| }
| </script>
|
| <style lang="less" scoped>
|
| .legend-panel{
| position: absolute;
| z-index: 502;
| bottom: .11979rem;
| right: .14583rem;
| -webkit-box-direction: normal;
| -ms-flex-direction: column;
| flex-direction: column;
| -webkit-box-align: end;
| -ms-flex-align: end;
| align-items: flex-end;
| }
|
| </style>
|
|