Kaynağa Gözat

调整+增加打点功能

liaoyitao 3 ay önce
ebeveyn
işleme
d8d73b44b2

+ 9 - 9
src/views/info/areaInfo/index.vue

@@ -138,7 +138,7 @@ export default {
138
       polygonTool: null,
138
       polygonTool: null,
139
       geoJson: {
139
       geoJson: {
140
         type: "Polygon",
140
         type: "Polygon",
141
-        coordinates: [[]],
141
+        coordinates: [],
142
       },
142
       },
143
       loading: true,
143
       loading: true,
144
       // 导出遮罩层
144
       // 导出遮罩层
@@ -168,7 +168,7 @@ export default {
168
       },
168
       },
169
       queryAreaTypeParams: {
169
       queryAreaTypeParams: {
170
         pageNum: 1,
170
         pageNum: 1,
171
-        pageSize: 10,
171
+        pageSize: 99999,
172
       },
172
       },
173
       // 表单参数
173
       // 表单参数
174
       form: {},
174
       form: {},
@@ -190,7 +190,7 @@ export default {
190
   methods: {
190
   methods: {
191
 
191
 
192
     openPolygonTool() {
192
     openPolygonTool() {
193
-      if (  JSON.parse(this.form.location).coordinates[0].length > 0 || this.geoJson.coordinates[0].length > 0 ) {
193
+      if (  JSON.parse(this.form.location).coordinates.length > 0 || this.geoJson.coordinates.length > 0 ) {
194
         this.$notify({
194
         this.$notify({
195
           title: '警告',
195
           title: '警告',
196
           message: '请先清空地图',
196
           message: '请先清空地图',
@@ -207,8 +207,8 @@ export default {
207
         let drawData = yu.currentLnglats.map((item) => {
207
         let drawData = yu.currentLnglats.map((item) => {
208
           return [item.lng, item.lat];
208
           return [item.lng, item.lat];
209
         });
209
         });
210
-        this.geoJson.coordinates[0] = drawData;
211
-        console.log("区域之后处理数据", this.geoJson.coordinates[0]);
210
+        this.geoJson.coordinates = drawData;
211
+        console.log("区域之后处理数据", this.geoJson.coordinates);
212
 
212
 
213
       });
213
       });
214
     },
214
     },
@@ -216,7 +216,7 @@ export default {
216
     tijiao() {
216
     tijiao() {
217
       console.log('多边形数据:', this.form.location);
217
       console.log('多边形数据:', this.form.location);
218
 
218
 
219
-      if (this.geoJson.coordinates[0].length > 0) {
219
+      if (this.geoJson.coordinates.length > 0) {
220
         this.form.location = JSON.stringify(this.geoJson)
220
         this.form.location = JSON.stringify(this.geoJson)
221
       }
221
       }
222
 
222
 
@@ -229,7 +229,7 @@ export default {
229
  destructionTMap ()  {
229
  destructionTMap ()  {
230
   if (this.map) {
230
   if (this.map) {
231
     this.map = null;
231
     this.map = null;
232
-    this.geoJson.coordinates[0]=[]
232
+    this.geoJson.coordinates=[]
233
     // 直接将节点给删掉
233
     // 直接将节点给删掉
234
     console.log('1qsad');
234
     console.log('1qsad');
235
 
235
 
@@ -247,7 +247,7 @@ export default {
247
 
247
 
248
     clearmian() {
248
     clearmian() {
249
 
249
 
250
-      this.geoJson.coordinates[0] = []
250
+      this.geoJson.coordinates = []
251
       this.$set(this.form, 'location', JSON.stringify(this.geoJson))
251
       this.$set(this.form, 'location', JSON.stringify(this.geoJson))
252
       this.map.clearOverLays()
252
       this.map.clearOverLays()
253
 
253
 
@@ -286,7 +286,7 @@ export default {
286
 
286
 
287
 
287
 
288
         var points = [];
288
         var points = [];
289
-        JSON.parse(this.form.location).coordinates[0].map((item) => {
289
+        JSON.parse(this.form.location).coordinates.map((item) => {
290
           points.push(new T.LngLat(item[0], item[1]));
290
           points.push(new T.LngLat(item[0], item[1]));
291
         })
291
         })
292
 
292
 

+ 99 - 1
src/views/info/buildingInfo/index.vue

@@ -157,7 +157,9 @@
157
           <wang-editor v-model="form.memo" :min-height="140" />
157
           <wang-editor v-model="form.memo" :min-height="140" />
158
         </el-form-item>
158
         </el-form-item>
159
         <el-form-item label="三维坐标" prop="rasterLngLat">
159
         <el-form-item label="三维坐标" prop="rasterLngLat">
160
-          <el-input v-model="form.rasterLngLat" placeholder="请输入三维坐标" />
160
+          <el-input v-model="form.rasterLngLat" @focus="openditu">
161
+            {{ form.rasterLngLat}}
162
+          </el-input>
161
         </el-form-item>
163
         </el-form-item>
162
         <el-form-item label="地址" prop="address">
164
         <el-form-item label="地址" prop="address">
163
           <el-input v-model="form.address" placeholder="请输入地址" />
165
           <el-input v-model="form.address" placeholder="请输入地址" />
@@ -184,6 +186,19 @@
184
         <el-button @click="cancel">取 消</el-button>
186
         <el-button @click="cancel">取 消</el-button>
185
       </div>
187
       </div>
186
     </el-dialog>
188
     </el-dialog>
189
+
190
+    <el-dialog title="地图" :visible.sync="dialogVisible" width="80%">
191
+      <div id='mainMap'>
192
+        <div id="mapDiv" style="width:100%; height:700px">
193
+        </div>
194
+      </div>
195
+      <input type="button" value="清除" @click='clearmian()' />
196
+      <input type="button" value="标点工具" @click='openMarkTool()' />
197
+      <span slot="footer" class="dialog-footer">
198
+        <el-button @click="dialogVisible = false">取 消</el-button>
199
+        <el-button type="primary" @click='tijiao'>确定</el-button>
200
+      </span>
201
+    </el-dialog>
187
   </div>
202
   </div>
188
 </template>
203
 </template>
189
 
204
 
@@ -194,6 +209,10 @@ export default {
194
   name: "BuildingInfo",
209
   name: "BuildingInfo",
195
   data() {
210
   data() {
196
     return {
211
     return {
212
+      dialogVisible: false,
213
+      map: null,
214
+      handler: null,
215
+      markPoints: '', // 保存标记点的坐标
197
       buildingTypeList: [],
216
       buildingTypeList: [],
198
       // 遮罩层
217
       // 遮罩层
199
       loading: true,
218
       loading: true,
@@ -233,6 +252,9 @@ export default {
233
         buildingId: [
252
         buildingId: [
234
           { required: true, message: "大楼编号不能为空", trigger: "blur" }
253
           { required: true, message: "大楼编号不能为空", trigger: "blur" }
235
         ],
254
         ],
255
+        typeId: [
256
+          { required: true, message: "类别不能为空", trigger: "change" }
257
+        ],
236
       }
258
       }
237
     };
259
     };
238
   },
260
   },
@@ -242,6 +264,82 @@ export default {
242
   },
264
   },
243
   methods: {
265
   methods: {
244
 
266
 
267
+    // 销毁天地图
268
+    destructionTMap ()  {
269
+      if (this.map) {
270
+        this.map = null;
271
+        // 直接将节点给删掉
272
+        console.log('1qsad');
273
+
274
+        const parentEl = document.getElementById('mainMap');
275
+        const cahildrenEl1 = document.getElementById('mapDiv');
276
+        if(cahildrenEl1) parentEl.removeChild(cahildrenEl1);
277
+        // 然后再手动将节点加进来
278
+        const newCahildrenEl = document.createElement("div");
279
+        newCahildrenEl.id = 'mapDiv'
280
+        newCahildrenEl.style = 'height: 700px;width: 100%;'
281
+        parentEl.appendChild(newCahildrenEl)
282
+      }
283
+    },
284
+
285
+    tijiao() {
286
+      console.log('多边形数据:', this.form.rasterLngLat);
287
+      console.log('多边形数据:', this.markPoints);
288
+      this.form.rasterLngLat = this.markPoints
289
+      this.destructionTMap()
290
+      this.dialogVisible = false;
291
+    },
292
+
293
+    clearmian() {
294
+      if (this.handler) this.handler.close();
295
+      this.map.clearOverLays(); // 清除所有覆盖物
296
+      this.markPoints = ''; // 清除保存的标记点坐标
297
+    },
298
+
299
+    openMarkTool() {
300
+      console.log("1111111111")
301
+      if (this.handler) this.handler.close(); // 关闭之前的工具
302
+
303
+      this.handler = new T.MarkTool(this.map); // 创建标点工具
304
+      this.handler.open(); // 打开标点工具
305
+
306
+      this.handler.on("mouseup", (e) => {
307
+        let drawData1 = e.currentLnglat.lat+","+e.currentLnglat.lng;
308
+        this.markPoints = drawData1;
309
+      });
310
+
311
+      this.handler.on("close", () => {
312
+        // 标点工具关闭时的处理
313
+        this.handler = null;
314
+      });
315
+    },
316
+
317
+
318
+    openditu() {
319
+      console.log('打开地图对话框');
320
+      this.dialogVisible = true;
321
+      this.$nextTick(() => {
322
+        const T = window.T;
323
+        const zoom = 12;
324
+        this.map = new T.Map('mapDiv');
325
+        this.map.centerAndZoom(new T.LngLat(103.96, 30.66), zoom);
326
+        // 创建标注工具对象
327
+        this.handler = new T.MarkTool(this.map);
328
+        console.log('handler 初始化完成:', this.handler);
329
+        console.log('kanknak1', this.form.rasterLngLat);
330
+        let points = new T.LngLat();
331
+        if (this.form.rasterLngLat) {
332
+          const coordinates = this.form.rasterLngLat.split(',');
333
+          points =  new T.LngLat(coordinates[1], coordinates[0]);
334
+        }
335
+        // 创建面对象
336
+        console.log('kanknak2', points);
337
+        const marker = new T.Marker(points);
338
+        // 向地图上添加面
339
+        this.map.addOverLay(marker);
340
+      });
341
+    },
342
+
245
     getBuildingTypeList() {
343
     getBuildingTypeList() {
246
       listBuildingType(this.queryBuildingTypeParams).then(response => {
344
       listBuildingType(this.queryBuildingTypeParams).then(response => {
247
       this.buildingTypeList = response.data.list;
345
       this.buildingTypeList = response.data.list;

+ 95 - 1
src/views/info/equipmentInfo/index.vue

@@ -259,7 +259,9 @@
259
           <el-input v-model="form.lngLat" placeholder="请输入二维坐标" />
259
           <el-input v-model="form.lngLat" placeholder="请输入二维坐标" />
260
         </el-form-item>
260
         </el-form-item>
261
         <el-form-item label="三维坐标" prop="rasterLngLat">
261
         <el-form-item label="三维坐标" prop="rasterLngLat">
262
-          <el-input v-model="form.rasterLngLat" placeholder="请输入三维坐标" />
262
+          <el-input v-model="form.rasterLngLat" @focus="openditu">
263
+            {{ form.rasterLngLat}}
264
+          </el-input>
263
         </el-form-item>
265
         </el-form-item>
264
         <el-form-item label="状态" prop="status">
266
         <el-form-item label="状态" prop="status">
265
           <el-select v-model="form.status" placeholder="请选择状态">
267
           <el-select v-model="form.status" placeholder="请选择状态">
@@ -297,6 +299,19 @@
297
         <el-button @click="cancel">取 消</el-button>
299
         <el-button @click="cancel">取 消</el-button>
298
       </div>
300
       </div>
299
     </el-dialog>
301
     </el-dialog>
302
+
303
+    <el-dialog title="地图" :visible.sync="dialogVisible" width="80%">
304
+      <div id='mainMap'>
305
+        <div id="mapDiv" style="width:100%; height:700px">
306
+        </div>
307
+      </div>
308
+      <input type="button" value="清除" @click='clearmian()' />
309
+      <input type="button" value="标点工具" @click='openMarkTool()' />
310
+      <span slot="footer" class="dialog-footer">
311
+        <el-button @click="dialogVisible = false">取 消</el-button>
312
+        <el-button type="primary" @click='tijiao'>确定</el-button>
313
+      </span>
314
+    </el-dialog>
300
   </div>
315
   </div>
301
 </template>
316
 </template>
302
 
317
 
@@ -311,6 +326,10 @@ export default {
311
   dicts: ['equipment_info_type', 'device_status', 'equip_brand'],
326
   dicts: ['equipment_info_type', 'device_status', 'equip_brand'],
312
   data() {
327
   data() {
313
     return {
328
     return {
329
+      dialogVisible: false,
330
+      map: null,
331
+      handler: null,
332
+      markPoints: '', // 保存标记点的坐标
314
       equipmentTypeList: [],
333
       equipmentTypeList: [],
315
       areaList: [],
334
       areaList: [],
316
       roomList: [],
335
       roomList: [],
@@ -371,6 +390,81 @@ export default {
371
 
390
 
372
   },
391
   },
373
   methods: {
392
   methods: {
393
+    // 销毁天地图
394
+    destructionTMap ()  {
395
+      if (this.map) {
396
+        this.map = null;
397
+        // 直接将节点给删掉
398
+        console.log('1qsad');
399
+
400
+        const parentEl = document.getElementById('mainMap');
401
+        const cahildrenEl1 = document.getElementById('mapDiv');
402
+        if(cahildrenEl1) parentEl.removeChild(cahildrenEl1);
403
+        // 然后再手动将节点加进来
404
+        const newCahildrenEl = document.createElement("div");
405
+        newCahildrenEl.id = 'mapDiv'
406
+        newCahildrenEl.style = 'height: 700px;width: 100%;'
407
+        parentEl.appendChild(newCahildrenEl)
408
+      }
409
+    },
410
+
411
+    tijiao() {
412
+      console.log('多边形数据:', this.form.rasterLngLat);
413
+      console.log('多边形数据:', this.markPoints);
414
+      this.form.rasterLngLat = this.markPoints
415
+      this.destructionTMap()
416
+      this.dialogVisible = false;
417
+    },
418
+
419
+    clearmian() {
420
+      if (this.handler) this.handler.close();
421
+      this.map.clearOverLays(); // 清除所有覆盖物
422
+      this.markPoints = ''; // 清除保存的标记点坐标
423
+    },
424
+
425
+    openMarkTool() {
426
+      console.log("1111111111")
427
+      if (this.handler) this.handler.close(); // 关闭之前的工具
428
+
429
+      this.handler = new T.MarkTool(this.map); // 创建标点工具
430
+      this.handler.open(); // 打开标点工具
431
+
432
+      this.handler.on("mouseup", (e) => {
433
+        let drawData1 = e.currentLnglat.lat+","+e.currentLnglat.lng;
434
+        this.markPoints = drawData1;
435
+      });
436
+
437
+      this.handler.on("close", () => {
438
+        // 标点工具关闭时的处理
439
+        this.handler = null;
440
+      });
441
+    },
442
+
443
+
444
+    openditu() {
445
+      console.log('打开地图对话框');
446
+      this.dialogVisible = true;
447
+      this.$nextTick(() => {
448
+        const T = window.T;
449
+        const zoom = 12;
450
+        this.map = new T.Map('mapDiv');
451
+        this.map.centerAndZoom(new T.LngLat(103.96, 30.66), zoom);
452
+        // 创建标注工具对象
453
+        this.handler = new T.MarkTool(this.map);
454
+        console.log('handler 初始化完成:', this.handler);
455
+        console.log('kanknak1', this.form.rasterLngLat);
456
+        let points = new T.LngLat();
457
+        if (this.form.rasterLngLat) {
458
+          const coordinates = this.form.rasterLngLat.split(',');
459
+          points =  new T.LngLat(coordinates[1], coordinates[0]);
460
+        }
461
+        // 创建面对象
462
+        console.log('kanknak2', points);
463
+        const marker = new T.Marker(points);
464
+        // 向地图上添加面
465
+        this.map.addOverLay(marker);
466
+      });
467
+    },
374
 
468
 
375
     getEquipmentTypeName(typeId) {
469
     getEquipmentTypeName(typeId) {
376
       const type = this.equipmentTypeList.find(b => b.typeId === typeId);
470
       const type = this.equipmentTypeList.find(b => b.typeId === typeId);

+ 6 - 6
src/views/info/organizationInfo/index.vue

@@ -376,7 +376,7 @@ export default {
376
       dialogVisible: false,
376
       dialogVisible: false,
377
       map: null,
377
       map: null,
378
       handler: null,
378
       handler: null,
379
-      markPoints: [], // 保存标记点的坐标
379
+      markPoints: '', // 保存标记点的坐标
380
       houseTypeList: [],
380
       houseTypeList: [],
381
       organizationTypeList: [],
381
       organizationTypeList: [],
382
       areaList: [],
382
       areaList: [],
@@ -462,7 +462,7 @@ export default {
462
     tijiao() {
462
     tijiao() {
463
       console.log('多边形数据:', this.form.rasterLngLat);
463
       console.log('多边形数据:', this.form.rasterLngLat);
464
       console.log('多边形数据:', this.markPoints);
464
       console.log('多边形数据:', this.markPoints);
465
-      this.form.rasterLngLat = JSON.stringify(this.markPoints)
465
+      this.form.rasterLngLat = this.markPoints
466
       this.destructionTMap()
466
       this.destructionTMap()
467
       this.dialogVisible = false;
467
       this.dialogVisible = false;
468
     },
468
     },
@@ -470,7 +470,7 @@ export default {
470
     clearmian() {
470
     clearmian() {
471
       if (this.handler) this.handler.close();
471
       if (this.handler) this.handler.close();
472
       this.map.clearOverLays(); // 清除所有覆盖物
472
       this.map.clearOverLays(); // 清除所有覆盖物
473
-      this.markPoints = []; // 清除保存的标记点坐标
473
+      this.markPoints = ''; // 清除保存的标记点坐标
474
     },
474
     },
475
 
475
 
476
     openMarkTool() {
476
     openMarkTool() {
@@ -481,7 +481,7 @@ export default {
481
       this.handler.open(); // 打开标点工具
481
       this.handler.open(); // 打开标点工具
482
 
482
 
483
       this.handler.on("mouseup", (e) => {
483
       this.handler.on("mouseup", (e) => {
484
-        let drawData1 = [e.currentLnglat.lat, e.currentLnglat.lng]
484
+        let drawData1 = e.currentLnglat.lat+","+e.currentLnglat.lng
485
         this.markPoints = drawData1;
485
         this.markPoints = drawData1;
486
       });
486
       });
487
 
487
 
@@ -504,9 +504,9 @@ export default {
504
         this.handler = new T.MarkTool(this.map);
504
         this.handler = new T.MarkTool(this.map);
505
         console.log('handler 初始化完成:', this.handler);
505
         console.log('handler 初始化完成:', this.handler);
506
         console.log('kanknak1', this.form.rasterLngLat);
506
         console.log('kanknak1', this.form.rasterLngLat);
507
-        let points = null;
507
+        let points = [];
508
         if (this.form.rasterLngLat) {
508
         if (this.form.rasterLngLat) {
509
-          const coordinates = JSON.parse(this.form.rasterLngLat);
509
+          const coordinates = this.form.rasterLngLat.split(',');
510
           points =  new T.LngLat(coordinates[1], coordinates[0]);
510
           points =  new T.LngLat(coordinates[1], coordinates[0]);
511
         }
511
         }
512
         // 创建面对象
512
         // 创建面对象

+ 12 - 1
src/views/info/policyInfo/index.vue

@@ -38,6 +38,7 @@
38
         </el-select>
38
         </el-select>
39
       </el-form-item>
39
       </el-form-item>
40
       <el-form-item>
40
       <el-form-item>
41
+        <el-button icon="el-icon-refresh" size="mini" @click="orderBy">反序</el-button>
41
         <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
42
         <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
42
         <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
43
         <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
43
       </el-form-item>
44
       </el-form-item>
@@ -175,6 +176,7 @@ export default {
175
   },
176
   },
176
   data() {
177
   data() {
177
     return {
178
     return {
179
+      isDesc: false,
178
       // 遮罩层
180
       // 遮罩层
179
       loading: true,
181
       loading: true,
180
       // 导出遮罩层
182
       // 导出遮罩层
@@ -201,7 +203,8 @@ export default {
201
         pageSize: 10,
203
         pageSize: 10,
202
         policyName: null,
204
         policyName: null,
203
         createTime: null,
205
         createTime: null,
204
-        fileName: ''
206
+        fileName: '',
207
+        orderBy: ''
205
       },
208
       },
206
       // 表单参数
209
       // 表单参数
207
       form: {},
210
       form: {},
@@ -217,6 +220,14 @@ export default {
217
     this.getList();
220
     this.getList();
218
   },
221
   },
219
   methods: {
222
   methods: {
223
+
224
+
225
+    orderBy(){
226
+      this.isDesc = !this.isDesc; // 切换排序顺序的状态
227
+      this.queryParams.orderBy = this.isDesc ? "DESC" : ""; // 根据状态设置 orderBy 值
228
+      this.handleQuery();
229
+    },
230
+
220
     handleFileUploaded(fileName) {
231
     handleFileUploaded(fileName) {
221
       this.form.fileName = fileName;
232
       this.form.fileName = fileName;
222
     },
233
     },

+ 7 - 7
src/views/info/stationInfo/index.vue

@@ -185,7 +185,7 @@ export default {
185
       dialogVisible: false,
185
       dialogVisible: false,
186
       map: null,
186
       map: null,
187
       handler: null,
187
       handler: null,
188
-      markPoints: [], // 保存标记点的坐标
188
+      markPoints: '', // 保存标记点的坐标
189
       trafficList: [],
189
       trafficList: [],
190
       // 遮罩层
190
       // 遮罩层
191
       loading: true,
191
       loading: true,
@@ -255,7 +255,7 @@ export default {
255
     tijiao() {
255
     tijiao() {
256
       console.log('多边形数据:', this.form.rasterLngLat);
256
       console.log('多边形数据:', this.form.rasterLngLat);
257
       console.log('多边形数据:', this.markPoints);
257
       console.log('多边形数据:', this.markPoints);
258
-      this.form.rasterLngLat = JSON.stringify(this.markPoints)
258
+      this.form.rasterLngLat = this.markPoints
259
       this.destructionTMap()
259
       this.destructionTMap()
260
       this.dialogVisible = false;
260
       this.dialogVisible = false;
261
     },
261
     },
@@ -263,7 +263,7 @@ export default {
263
     clearmian() {
263
     clearmian() {
264
       if (this.handler) this.handler.close();
264
       if (this.handler) this.handler.close();
265
       this.map.clearOverLays(); // 清除所有覆盖物
265
       this.map.clearOverLays(); // 清除所有覆盖物
266
-      this.markPoints = []; // 清除保存的标记点坐标
266
+      this.markPoints = ''; // 清除保存的标记点坐标
267
     },
267
     },
268
 
268
 
269
     openMarkTool() {
269
     openMarkTool() {
@@ -274,7 +274,7 @@ export default {
274
       this.handler.open(); // 打开标点工具
274
       this.handler.open(); // 打开标点工具
275
 
275
 
276
       this.handler.on("mouseup", (e) => {
276
       this.handler.on("mouseup", (e) => {
277
-        let drawData1 = [e.currentLnglat.lat, e.currentLnglat.lng]
277
+        let drawData1 = e.currentLnglat.lat+","+e.currentLnglat.lng;
278
         this.markPoints = drawData1;
278
         this.markPoints = drawData1;
279
       });
279
       });
280
 
280
 
@@ -297,9 +297,9 @@ export default {
297
         this.handler = new T.MarkTool(this.map);
297
         this.handler = new T.MarkTool(this.map);
298
         console.log('handler 初始化完成:', this.handler);
298
         console.log('handler 初始化完成:', this.handler);
299
         console.log('kanknak1', this.form.rasterLngLat);
299
         console.log('kanknak1', this.form.rasterLngLat);
300
-        let points = [];
300
+        let points = new T.LngLat();
301
         if (this.form.rasterLngLat) {
301
         if (this.form.rasterLngLat) {
302
-          const coordinates = JSON.parse(this.form.rasterLngLat);
302
+          const coordinates = this.form.rasterLngLat.split(',');
303
           points =  new T.LngLat(coordinates[1], coordinates[0]);
303
           points =  new T.LngLat(coordinates[1], coordinates[0]);
304
         }
304
         }
305
         // 创建面对象
305
         // 创建面对象
@@ -316,7 +316,7 @@ export default {
316
     },
316
     },
317
 
317
 
318
     getTrafficList(){
318
     getTrafficList(){
319
-      listTrafficInfo().then(response => {
319
+      listTrafficInfo(this.queryTypeParams).then(response => {
320
         this.trafficList = response.data.list;
320
         this.trafficList = response.data.list;
321
       });
321
       });
322
     },
322
     },

+ 12 - 17
src/views/info/trafficInfo/index.vue

@@ -185,7 +185,7 @@ export default {
185
       handler: null,
185
       handler: null,
186
       geoJson: {
186
       geoJson: {
187
         type: "Polyline",
187
         type: "Polyline",
188
-        coordinates: [[]],
188
+        coordinates: [],
189
       },
189
       },
190
       map: null,
190
       map: null,
191
       dialogVisible: false,
191
       dialogVisible: false,
@@ -244,7 +244,7 @@ export default {
244
     destructionTMap ()  {
244
     destructionTMap ()  {
245
       if (this.map) {
245
       if (this.map) {
246
         this.map = null;
246
         this.map = null;
247
-        this.geoJson.coordinates[0]=[]
247
+        this.geoJson.coordinates= []
248
         // 直接将节点给删掉
248
         // 直接将节点给删掉
249
         console.log('1qsad');
249
         console.log('1qsad');
250
 
250
 
@@ -262,7 +262,7 @@ export default {
262
     tijiao() {
262
     tijiao() {
263
       console.log('多边形数据:', this.form.location);
263
       console.log('多边形数据:', this.form.location);
264
 
264
 
265
-      if (this.geoJson.coordinates[0].length > 0) {
265
+      if (this.geoJson.coordinates.length > 0) {
266
         this.form.location = JSON.stringify(this.geoJson)
266
         this.form.location = JSON.stringify(this.geoJson)
267
       }
267
       }
268
 
268
 
@@ -273,7 +273,7 @@ export default {
273
 
273
 
274
     openPolylineTool(){
274
     openPolylineTool(){
275
       console.log(this.form.location);
275
       console.log(this.form.location);
276
-      if (JSON.parse(this.form.location).coordinates[0].length > 0 || this.geoJson.coordinates[0].length > 0 ) {
276
+      if (JSON.parse(this.form.location).coordinateslength > 0 || this.geoJson.coordinates.length > 0 ) {
277
         this.$notify({
277
         this.$notify({
278
           title: '警告',
278
           title: '警告',
279
           message: '请先清空地图',
279
           message: '请先清空地图',
@@ -282,29 +282,24 @@ export default {
282
         return
282
         return
283
       }
283
       }
284
       // if (this.handler) this.handler.close();
284
       // if (this.handler) this.handler.close();
285
-      this.handler = new T.PolylineTool(this.map);
285
+      this.handler = new T.PolylineTool(this.map, {
286
+        color: "red", weight: 3.5, opacity: 0.8, fillColor: "red", fillOpacity: 0.5
287
+      });
286
       this.handler.open();
288
       this.handler.open();
287
       this.handler.on("draw", (yu) => {
289
       this.handler.on("draw", (yu) => {
288
         console.log("参数??99", yu.currentLnglats);
290
         console.log("参数??99", yu.currentLnglats);
289
         let drawData = yu.currentLnglats.map((item) => {
291
         let drawData = yu.currentLnglats.map((item) => {
290
           return [item.lng, item.lat];
292
           return [item.lng, item.lat];
291
         });
293
         });
292
-        this.geoJson.coordinates[0] = drawData;
293
-        console.log("区域之后处理数据", this.geoJson.coordinates[0]);
294
+        this.geoJson.coordinates= drawData;
295
+        console.log("区域之后处理数据", this.geoJson.coordinates);
294
 
296
 
295
       });
297
       });
296
     },
298
     },
297
 
299
 
298
     showPolyLine() {
300
     showPolyLine() {
299
-      var config = {
300
-      showLabel: true,
301
-      color: "red", weight: 3.5, opacity: 0.8, fillColor: "red", fillOpacity: 0.5
302
-      };
303
-      //创建标注工具对象
304
-      this.polygonTool = new T.PolylineTool(this.map, config);
305
-      console.log('kanknak1', this.form.location);
306
       var points = [];
301
       var points = [];
307
-      JSON.parse(this.form.location).coordinates[0].map((item) => {
302
+      JSON.parse(this.form.location).coordinates.map((item) => {
308
         points.push(new T.LngLat(item[0], item[1]));
303
         points.push(new T.LngLat(item[0], item[1]));
309
       })
304
       })
310
       console.log('kanknak2', points);
305
       console.log('kanknak2', points);
@@ -317,7 +312,7 @@ export default {
317
     },
312
     },
318
 
313
 
319
     clearmian(){
314
     clearmian(){
320
-      this.geoJson.coordinates[0] = []
315
+      this.geoJson.coordinates = []
321
       this.$set(this.form, 'location', JSON.stringify(this.geoJson))
316
       this.$set(this.form, 'location', JSON.stringify(this.geoJson))
322
       this.map.clearOverLays()
317
       this.map.clearOverLays()
323
 
318
 
@@ -412,8 +407,8 @@ export default {
412
     submitForm() {
407
     submitForm() {
413
       this.$refs["form"].validate(valid => {
408
       this.$refs["form"].validate(valid => {
414
         if (valid) {
409
         if (valid) {
410
+          this.form.location=JSON.parse(this.form.location)
415
           if (this.form.trafficId != null) {
411
           if (this.form.trafficId != null) {
416
-            this.form.location=JSON.parse(this.form.location)
417
             updateTrafficInfo(this.form).then(response => {
412
             updateTrafficInfo(this.form).then(response => {
418
               this.$modal.msgSuccess("修改成功");
413
               this.$modal.msgSuccess("修改成功");
419
               this.open = false;
414
               this.open = false;

+ 5 - 1
src/views/system/dict/data.vue

@@ -145,6 +145,9 @@
145
         <el-form-item label="数据键值" prop="dictValue">
145
         <el-form-item label="数据键值" prop="dictValue">
146
           <el-input v-model="form.dictValue" placeholder="请输入数据键值" />
146
           <el-input v-model="form.dictValue" placeholder="请输入数据键值" />
147
         </el-form-item>
147
         </el-form-item>
148
+        <el-form-item label="icon图标">
149
+          <imageUpload :limit="1" v-model="form.icon"/>
150
+        </el-form-item>
148
         <el-form-item label="样式属性" prop="cssClass">
151
         <el-form-item label="样式属性" prop="cssClass">
149
           <el-input v-model="form.cssClass" placeholder="请输入样式属性" />
152
           <el-input v-model="form.cssClass" placeholder="请输入样式属性" />
150
         </el-form-item>
153
         </el-form-item>
@@ -307,7 +310,8 @@ export default {
307
         listClass: 'default',
310
         listClass: 'default',
308
         dictSort: 0,
311
         dictSort: 0,
309
         status: true,
312
         status: true,
310
-        remark: undefined
313
+        remark: undefined,
314
+        icon: null,
311
       };
315
       };
312
       this.resetForm("form");
316
       this.resetForm("form");
313
     },
317
     },

+ 5 - 1
src/views/type/organizationType/index.vue

@@ -122,6 +122,9 @@
122
         <el-form-item label="类别名称" prop="typeName">
122
         <el-form-item label="类别名称" prop="typeName">
123
           <el-input v-model="form.typeName" placeholder="请输入类别名称" />
123
           <el-input v-model="form.typeName" placeholder="请输入类别名称" />
124
         </el-form-item>
124
         </el-form-item>
125
+        <el-form-item label="icon图标">
126
+          <imageUpload :limit="2" v-model="form.icon"/>
127
+        </el-form-item>
125
         <el-form-item label="是否可点击">
128
         <el-form-item label="是否可点击">
126
           <el-switch v-model="form.click"></el-switch>
129
           <el-switch v-model="form.click"></el-switch>
127
         </el-form-item>
130
         </el-form-item>
@@ -222,7 +225,8 @@ export default {
222
         description: null,
225
         description: null,
223
         orderId: null,
226
         orderId: null,
224
         memo: null,
227
         memo: null,
225
-        colour: null
228
+        colour: null,
229
+        icon: null
226
       };
230
       };
227
       this.resetForm("form");
231
       this.resetForm("form");
228
     },
232
     },