木星 4 місяців тому
батько
коміт
a1c393f1e0
1 змінених файлів з 16 додано та 2 видалено
  1. 16 2
      src/views/info/areaInfo/index.vue

+ 16 - 2
src/views/info/areaInfo/index.vue

@@ -190,6 +190,19 @@ export default {
190
   methods: {
190
   methods: {
191
 
191
 
192
     openPolygonTool() {
192
     openPolygonTool() {
193
+
194
+      if (  JSON.parse(this.form.location).coordinates[0].length > 0 || this.geoJson.coordinates[0].length > 0 ) {
195
+
196
+        this.$notify({
197
+          title: '警告',
198
+          message: '请先清空地图',
199
+          type: 'warning'
200
+        });
201
+        return
202
+      }else{
203
+  
204
+      }
205
+
193
       if (this.handler) this.handler.close();
206
       if (this.handler) this.handler.close();
194
       this.handler = new T.PolygonTool(this.map);
207
       this.handler = new T.PolygonTool(this.map);
195
       this.handler.open();
208
       this.handler.open();
@@ -221,6 +234,7 @@ export default {
221
  destructionTMap ()  {
234
  destructionTMap ()  {
222
   if (this.map) {
235
   if (this.map) {
223
     this.map = null;
236
     this.map = null;
237
+    this.geoJson.coordinates[0]=[]
224
     // 直接将节点给删掉
238
     // 直接将节点给删掉
225
     console.log('1qsad');
239
     console.log('1qsad');
226
     
240
     
@@ -237,9 +251,9 @@ export default {
237
 
251
 
238
 
252
 
239
     clearmian() {
253
     clearmian() {
240
-      this.form.location = null
254
+   
241
       this.geoJson.coordinates[0] = []
255
       this.geoJson.coordinates[0] = []
242
-      this.$set(this.form, 'location', null)
256
+      this.$set(this.form, 'location', JSON.stringify(this.geoJson))
243
       this.map.clearOverLays()
257
       this.map.clearOverLays()
244
 
258
 
245
 
259