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
| <template>
| <div class='grid_add'>
| <section class="sec">
| <p class="label">网格名称:</p>
| <article>
| <el-input size="small"></el-input>
| </article>
| </section>
| <section class="sec">
| <p class="label">网格区域:</p>
| <article>请在地图上圈出该网格的管辖区域范围,长按鼠标右键在地图上拖动,勾画出一条闭合曲线</article>
| </section>
| <section class="sec">
| <p class="label"></p>
| <article class="map"></article>
| </section>
| <section class="sec">
| <p class="label"></p>
| <article class="btn">
| <el-button
| type="primary"
| size="small"
| >确定</el-button>
| <el-button size="small">取消</el-button>
| </article>
| </section>
| </div>
| </template>
|
| <script>
| export default {
| props: {},
| components: {},
| data() {
| return {};
| },
| watch: {},
| methods: {},
| mounted() {},
| };
| </script>
| <style lang='less' scoped>
| .grid_add {
| font-size: 14px;
| color: #333;
| padding: 10px;
| box-sizing: border-box;
| .map {
| height: 500px;
| background-color: #eee;
| }
| .el-input {
| max-width: 300px;
| }
| article {
| line-height: 32px;
| }
| }
| </style>
|
|