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
| <template>
| <div class="map-container">
| <wrapper-title :title="'区域地图'"></wrapper-title>
| <div class="map-content">
| </div>
| </div>
|
| </template>
|
| <script>
| import WrapperTitle from '../wrapper-title/index';
|
| export default {
| name: 'ScreenMapCover',
| components: {
| WrapperTitle
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .map-container {
| width: 100%;
| flex: 1;
| margin-bottom: 20px;
| display: flex;
| flex-direction: column;
|
| .map-content {
| flex: 1;
| pointer-events: none;
|
| }
|
| }
| </style>
|
|