Explorar el Código

调整+增加打点功能

liaoyitao hace 3 meses
padre
commit
d8d73b44b2

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

@@ -138,7 +138,7 @@ export default {
138 138
       polygonTool: null,
139 139
       geoJson: {
140 140
         type: "Polygon",
141
-        coordinates: [[]],
141
+        coordinates: [],
142 142
       },
143 143
       loading: true,
144 144
       // 导出遮罩层
@@ -168,7 +168,7 @@ export default {
168 168
       },
169 169
       queryAreaTypeParams: {
170 170
         pageNum: 1,
171
-        pageSize: 10,
171
+        pageSize: 99999,
172 172
       },
173 173
       // 表单参数
174 174
       form: {},
@@ -190,7 +190,7 @@ export default {
190 190
   methods: {
191 191
 
192 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 194
         this.$notify({
195 195
           title: '警告',
196 196
           message: '请先清空地图',
@@ -207,8 +207,8 @@ export default {
207 207
         let drawData = yu.currentLnglats.map((item) => {
208 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 216
     tijiao() {
217 217
       console.log('多边形数据:', this.form.location);
218 218
 
219
-      if (this.geoJson.coordinates[0].length > 0) {
219
+      if (this.geoJson.coordinates.length > 0) {
220 220
         this.form.location = JSON.stringify(this.geoJson)
221 221
       }
222 222
 
@@ -229,7 +229,7 @@ export default {
229 229
  destructionTMap ()  {
230 230
   if (this.map) {
231 231
     this.map = null;
232
-    this.geoJson.coordinates[0]=[]
232
+    this.geoJson.coordinates=[]
233 233
     // 直接将节点给删掉
234 234
     console.log('1qsad');
235 235
 
@@ -247,7 +247,7 @@ export default {
247 247
 
248 248
     clearmian() {
249 249
 
250
-      this.geoJson.coordinates[0] = []
250
+      this.geoJson.coordinates = []
251 251
       this.$set(this.form, 'location', JSON.stringify(this.geoJson))
252 252
       this.map.clearOverLays()
253 253
 
@@ -286,7 +286,7 @@ export default {
286 286
 
287 287
 
288 288
         var points = [];
289
-        JSON.parse(this.form.location).coordinates[0].map((item) => {
289
+        JSON.parse(this.form.location).coordinates.map((item) => {
290 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 157
           <wang-editor v-model="form.memo" :min-height="140" />
158 158
         </el-form-item>
159 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 163
         </el-form-item>
162 164
         <el-form-item label="地址" prop="address">
163 165
           <el-input v-model="form.address" placeholder="请输入地址" />
@@ -184,6 +186,19 @@
184 186
         <el-button @click="cancel">取 消</el-button>
185 187
       </div>
186 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 202
   </div>
188 203
 </template>
189 204
 
@@ -194,6 +209,10 @@ export default {
194 209
   name: "BuildingInfo",
195 210
   data() {
196 211
     return {
212
+      dialogVisible: false,
213
+      map: null,
214
+      handler: null,
215
+      markPoints: '', // 保存标记点的坐标
197 216
       buildingTypeList: [],
198 217
       // 遮罩层
199 218
       loading: true,
@@ -233,6 +252,9 @@ export default {
233 252
         buildingId: [
234 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 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 343
     getBuildingTypeList() {
246 344
       listBuildingType(this.queryBuildingTypeParams).then(response => {
247 345
       this.buildingTypeList = response.data.list;

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

@@ -259,7 +259,9 @@
259 259
           <el-input v-model="form.lngLat" placeholder="请输入二维坐标" />
260 260
         </el-form-item>
261 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 265
         </el-form-item>
264 266
         <el-form-item label="状态" prop="status">
265 267
           <el-select v-model="form.status" placeholder="请选择状态">
@@ -297,6 +299,19 @@
297 299
         <el-button @click="cancel">取 消</el-button>
298 300
       </div>
299 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 315
   </div>
301 316
 </template>
302 317
 
@@ -311,6 +326,10 @@ export default {
311 326
   dicts: ['equipment_info_type', 'device_status', 'equip_brand'],
312 327
   data() {
313 328
     return {
329
+      dialogVisible: false,
330
+      map: null,
331
+      handler: null,
332
+      markPoints: '', // 保存标记点的坐标
314 333
       equipmentTypeList: [],
315 334
       areaList: [],
316 335
       roomList: [],
@@ -371,6 +390,81 @@ export default {
371 390
 
372 391
   },
373 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 469
     getEquipmentTypeName(typeId) {
376 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 376
       dialogVisible: false,
377 377
       map: null,
378 378
       handler: null,
379
-      markPoints: [], // 保存标记点的坐标
379
+      markPoints: '', // 保存标记点的坐标
380 380
       houseTypeList: [],
381 381
       organizationTypeList: [],
382 382
       areaList: [],
@@ -462,7 +462,7 @@ export default {
462 462
     tijiao() {
463 463
       console.log('多边形数据:', this.form.rasterLngLat);
464 464
       console.log('多边形数据:', this.markPoints);
465
-      this.form.rasterLngLat = JSON.stringify(this.markPoints)
465
+      this.form.rasterLngLat = this.markPoints
466 466
       this.destructionTMap()
467 467
       this.dialogVisible = false;
468 468
     },
@@ -470,7 +470,7 @@ export default {
470 470
     clearmian() {
471 471
       if (this.handler) this.handler.close();
472 472
       this.map.clearOverLays(); // 清除所有覆盖物
473
-      this.markPoints = []; // 清除保存的标记点坐标
473
+      this.markPoints = ''; // 清除保存的标记点坐标
474 474
     },
475 475
 
476 476
     openMarkTool() {
@@ -481,7 +481,7 @@ export default {
481 481
       this.handler.open(); // 打开标点工具
482 482
 
483 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 485
         this.markPoints = drawData1;
486 486
       });
487 487
 
@@ -504,9 +504,9 @@ export default {
504 504
         this.handler = new T.MarkTool(this.map);
505 505
         console.log('handler 初始化完成:', this.handler);
506 506
         console.log('kanknak1', this.form.rasterLngLat);
507
-        let points = null;
507
+        let points = [];
508 508
         if (this.form.rasterLngLat) {
509
-          const coordinates = JSON.parse(this.form.rasterLngLat);
509
+          const coordinates = this.form.rasterLngLat.split(',');
510 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 38
         </el-select>
39 39
       </el-form-item>
40 40
       <el-form-item>
41
+        <el-button icon="el-icon-refresh" size="mini" @click="orderBy">反序</el-button>
41 42
         <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
42 43
         <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
43 44
       </el-form-item>
@@ -175,6 +176,7 @@ export default {
175 176
   },
176 177
   data() {
177 178
     return {
179
+      isDesc: false,
178 180
       // 遮罩层
179 181
       loading: true,
180 182
       // 导出遮罩层
@@ -201,7 +203,8 @@ export default {
201 203
         pageSize: 10,
202 204
         policyName: null,
203 205
         createTime: null,
204
-        fileName: ''
206
+        fileName: '',
207
+        orderBy: ''
205 208
       },
206 209
       // 表单参数
207 210
       form: {},
@@ -217,6 +220,14 @@ export default {
217 220
     this.getList();
218 221
   },
219 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 231
     handleFileUploaded(fileName) {
221 232
       this.form.fileName = fileName;
222 233
     },

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

@@ -185,7 +185,7 @@ export default {
185 185
       dialogVisible: false,
186 186
       map: null,
187 187
       handler: null,
188
-      markPoints: [], // 保存标记点的坐标
188
+      markPoints: '', // 保存标记点的坐标
189 189
       trafficList: [],
190 190
       // 遮罩层
191 191
       loading: true,
@@ -255,7 +255,7 @@ export default {
255 255
     tijiao() {
256 256
       console.log('多边形数据:', this.form.rasterLngLat);
257 257
       console.log('多边形数据:', this.markPoints);
258
-      this.form.rasterLngLat = JSON.stringify(this.markPoints)
258
+      this.form.rasterLngLat = this.markPoints
259 259
       this.destructionTMap()
260 260
       this.dialogVisible = false;
261 261
     },
@@ -263,7 +263,7 @@ export default {
263 263
     clearmian() {
264 264
       if (this.handler) this.handler.close();
265 265
       this.map.clearOverLays(); // 清除所有覆盖物
266
-      this.markPoints = []; // 清除保存的标记点坐标
266
+      this.markPoints = ''; // 清除保存的标记点坐标
267 267
     },
268 268
 
269 269
     openMarkTool() {
@@ -274,7 +274,7 @@ export default {
274 274
       this.handler.open(); // 打开标点工具
275 275
 
276 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 278
         this.markPoints = drawData1;
279 279
       });
280 280
 
@@ -297,9 +297,9 @@ export default {
297 297
         this.handler = new T.MarkTool(this.map);
298 298
         console.log('handler 初始化完成:', this.handler);
299 299
         console.log('kanknak1', this.form.rasterLngLat);
300
-        let points = [];
300
+        let points = new T.LngLat();
301 301
         if (this.form.rasterLngLat) {
302
-          const coordinates = JSON.parse(this.form.rasterLngLat);
302
+          const coordinates = this.form.rasterLngLat.split(',');
303 303
           points =  new T.LngLat(coordinates[1], coordinates[0]);
304 304
         }
305 305
         // 创建面对象
@@ -316,7 +316,7 @@ export default {
316 316
     },
317 317
 
318 318
     getTrafficList(){
319
-      listTrafficInfo().then(response => {
319
+      listTrafficInfo(this.queryTypeParams).then(response => {
320 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 185
       handler: null,
186 186
       geoJson: {
187 187
         type: "Polyline",
188
-        coordinates: [[]],
188
+        coordinates: [],
189 189
       },
190 190
       map: null,
191 191
       dialogVisible: false,
@@ -244,7 +244,7 @@ export default {
244 244
     destructionTMap ()  {
245 245
       if (this.map) {
246 246
         this.map = null;
247
-        this.geoJson.coordinates[0]=[]
247
+        this.geoJson.coordinates= []
248 248
         // 直接将节点给删掉
249 249
         console.log('1qsad');
250 250
 
@@ -262,7 +262,7 @@ export default {
262 262
     tijiao() {
263 263
       console.log('多边形数据:', this.form.location);
264 264
 
265
-      if (this.geoJson.coordinates[0].length > 0) {
265
+      if (this.geoJson.coordinates.length > 0) {
266 266
         this.form.location = JSON.stringify(this.geoJson)
267 267
       }
268 268
 
@@ -273,7 +273,7 @@ export default {
273 273
 
274 274
     openPolylineTool(){
275 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 277
         this.$notify({
278 278
           title: '警告',
279 279
           message: '请先清空地图',
@@ -282,29 +282,24 @@ export default {
282 282
         return
283 283
       }
284 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 288
       this.handler.open();
287 289
       this.handler.on("draw", (yu) => {
288 290
         console.log("参数??99", yu.currentLnglats);
289 291
         let drawData = yu.currentLnglats.map((item) => {
290 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 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 301
       var points = [];
307
-      JSON.parse(this.form.location).coordinates[0].map((item) => {
302
+      JSON.parse(this.form.location).coordinates.map((item) => {
308 303
         points.push(new T.LngLat(item[0], item[1]));
309 304
       })
310 305
       console.log('kanknak2', points);
@@ -317,7 +312,7 @@ export default {
317 312
     },
318 313
 
319 314
     clearmian(){
320
-      this.geoJson.coordinates[0] = []
315
+      this.geoJson.coordinates = []
321 316
       this.$set(this.form, 'location', JSON.stringify(this.geoJson))
322 317
       this.map.clearOverLays()
323 318
 
@@ -412,8 +407,8 @@ export default {
412 407
     submitForm() {
413 408
       this.$refs["form"].validate(valid => {
414 409
         if (valid) {
410
+          this.form.location=JSON.parse(this.form.location)
415 411
           if (this.form.trafficId != null) {
416
-            this.form.location=JSON.parse(this.form.location)
417 412
             updateTrafficInfo(this.form).then(response => {
418 413
               this.$modal.msgSuccess("修改成功");
419 414
               this.open = false;

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

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

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

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