quanyawei
2024-01-25 d53995cad3a6351250333115a15c506e5926d8f5
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
<template>
  <a-card :bordered="false" style="margin-top:24px">
    <div class="tableList">
      <div class="tableListForm">
        <a-form-model layout="horizontal">
          <a-row :gutter="15">
            <a-col :span="5">
              <a-button
                icon="plus"
                type="primary"
                @click="() => this.handleModalVisible(true)"
                style="margin-left: 25px;"
                >新建</a-button
              >
            </a-col>
            <a-col :span="5" style="margin-left: 37%">
              <a-form-model-item :wrapperCol="wrapperCol">
                <a-select
                  placeholder="选择组织"
                  style="width: 240px;margin-top:4px"
                  @change="handleChange"
                  allow-clear
                  show-search
                >
                  <a-select-option
                    v-for="(item, index) in orgData"
                    :key="index"
                    :value="item.id"
                  >
                    {{ item.name }}
                  </a-select-option>
                </a-select>
              </a-form-model-item>
            </a-col>
            <a-col :span="5">
              <a-form-model-item :wrapperCol="wrapperCol">
                <a-input
                  v-model="searchName"
                  placeholder="请输入名称查询"
                  allow-clear
                />
              </a-form-model-item>
            </a-col>
          </a-row>
        </a-form-model>
      </div>
      <av-standard-table
        :dataSource="dataSource"
        :columns="columns"
        :loading="tableLoading"
        :paginationProps="pagination"
        @tableChange="handlerTableChange"
      ></av-standard-table>
    </div>
    <a-modal
      title="区域扩散图添加"
      destroyOnClose
      :visible="addShowOrHiddenFlag"
      @ok="addOK"
      @cancel="addCancel"
      okText="保存"
    >
      <a-form-model
        style="margin-top: 8px"
        :model="addForm"
        :rules="rules"
        ref="addRulesForm"
      >
        <a-form-model-item
          has-feedback
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="名称"
          prop="name"
        >
          <a-input
            placeholder="设备名称"
            type="string"
            v-model="addForm.name"
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="组织"
          has-feedback
          prop="orgId"
        >
          <a-select
            placeholder="请选择组织"
            type="string"
            allow-clear
            show-search
            v-model="addForm.orgId"
          >
            <a-select-option
              v-for="(item, index) in orgData"
              :key="index"
              :value="item.id"
            >
              {{ item.name }}
            </a-select-option>
          </a-select>
        </a-form-model-item>
      </a-form-model>
    </a-modal>
    <a-modal
      title="区域扩散图编辑"
      destroyOnClose
      :visible="editShowOrHiddenFlag"
      @ok="editSave"
      @cancel="editCancel"
      okText="保存"
    >
      <a-form-model
        style="margin-top: 8px"
        :model="editForm"
        :rules="rules"
        ref="editRulesForm"
      >
        <a-form-model-item
          has-feedback
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="名称"
          prop="name"
        >
          <a-input placeholder="名称" type="string" v-model="editForm.name" />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="组织"
          has-feedback
        >
          <a-input
            placeholder="名称"
            type="string"
            disabled="disabled"
            v-model="editForm.orgName"
          />
        </a-form-model-item>
      </a-form-model>
    </a-modal>
    <a-modal
      title="坐标选择"
      width="70%"
      destroyOnClose
      :visible="areaPointConfigurationFlag"
      @ok="editAreaPoint"
      @cancel="editCancelMap"
      okText="确定"
      class="areaStyle"
    >
      <div>
        <a-layout>
          <a-layout>
            <a-layout-sider>
              <a-tree
                v-model="checkedKeys"
                checkable
                @select="onSelect"
                :tree-data="treeData"
                @check="onCheck"
              />
            </a-layout-sider>
 
            <a-layout-content>
              <div style="position: relative">
                <baidu-map
                  @ready="handler"
                  :center="map.center"
                  :zoom="map.zoom"
                  :scroll-wheel-zoom="true"
                  @click="mapClick"
                  style="height: 600px;width: 100%; z-index: 9"
                >
                  <bm-control>
                    <a-button
                      type="primary"
                      style="margin-top: 20px; margin-left: 10px; border: none"
                      @click="toggle"
                      >{{
                        polyline.editing ? "停止绘制" : "开始绘制"
                      }}</a-button
                    >
                    <a-button
                      type="primary"
                      style="margin-top: 20px; margin-left: 10px; border: none"
                      @click="chooseCenter"
                      >{{
                        !map.chooseCenter.flag ? "选择中心点" : "确认选择"
                      }}</a-button
                    >
                    <p
                      style="position: absolute;top: 20px;left: 240px;z-index: 10; width: 400px"
                    >
                      <a-input
                        disabled="disabled"
                        placeholder="中心点经度"
                        v-model="map.chooseCenter.point.lng"
                        style="display: inline; width: 160px;height: 32px"
                      />
                      <a-input
                        disabled="disabled"
                        placeholder="中心点纬度"
                        v-model="map.chooseCenter.point.lat"
                        style="display: inline; width: 160px;height: 32px;margin-left: 10px"
                      />
                    </p>
                  </bm-control>
                  <!--            <bm-local-search :keyword="keyword" :auto-viewport="true"  style="display: none" ></bm-local-search>-->
                  <bm-marker
                    v-for="item in map.points"
                    :position="item.point"
                  ></bm-marker>
                  <bm-circle
                    v-for="item in map.points"
                    :center="item.point"
                    :radius="2000"
                    stroke-color="red"
                    :stroke-opacity="0.5"
                    :stroke-weight="1"
                    :editing="false"
                  ></bm-circle>
                  <bm-polygon
                    :path="polyline.points"
                    stroke-color="blue"
                    :stroke-opacity="0.5"
                    :stroke-weight="2"
                    :editing="polyline.editing"
                    @lineupdate="updatePolygonPath"
                  />
                  <bm-marker
                    v-if="
                      map.chooseCenter.flag || map.chooseCenter.point.lat !== ''
                    "
                    :position="map.chooseCenter.point"
                    color="blue"
                    :dragging="true"
                    animation="BMAP_ANIMATION_BOUNCE"
                  ></bm-marker>
                </baidu-map>
              </div>
            </a-layout-content>
          </a-layout>
        </a-layout>
      </div>
    </a-modal>
  </a-card>
</template>
 
<script lang="tsx">
import { Component, Vue, Watch } from "vue-property-decorator";
import org from "@/util/org";
import { get, post } from "@/util/request";
import axios from "axios";
 
@Component({
  components: {},
})
export default class areaConfiguration extends Vue {
  // 定义样式
  private wrapperCol: any = {
    sm: { span: 16 }, //控制文本框的长度
  };
  private orgData: any = [];
  // 列头
  private columns: any[] = [
    {
      title: "序号",
      dataIndex: "key",
      key: "key",
      align: "center",
      customRender: (text: any, record: any, index: any) => `${index + 1}`,
      width: 60,
    },
    {
      title: "名称",
      dataIndex: "name",
    },
    {
      title: "所属组织",
      dataIndex: "organization_name",
    },
    {
      title: "中心点经度",
      dataIndex: "centerLongitude",
    },
    {
      title: "中心点纬度",
      dataIndex: "centerLatitude",
    },
 
    {
      title: "创建时间",
      dataIndex: "createTime",
    },
    {
      title: "操作",
      customRender: this.opRender,
    },
  ];
  // 用于查询站点模糊查询
  private searchName: string = "";
  // 用于检验是否有数据
  private tableLoading: boolean = false;
  // 数据
  private dataSource: any[] = [];
  // 查询的组织id
  private queryId: any = undefined;
  // 显示新增隐藏标识
  private addShowOrHiddenFlag: boolean = false;
  // 显示编辑隐藏标识
  private editShowOrHiddenFlag: boolean = false;
  // 区域点显示隐藏flag
  private areaPointConfigurationFlag: boolean = false;
  // 树数据
  private treeData: any = [];
  // 树结构初始选择
  private checkedKeys: any = [];
  // 存放数据信息,用在地图
  private mapRecord: any = {};
  // 绘制框
  private polyline: any = {
    editing: false,
    points: [],
  };
  // 指定新增和编辑规则
  private rules: any = {
    name: [
      { required: true, message: "名称不能为空", trigger: ["change", "blur"] },
    ],
 
    orgId: [
      { required: true, message: "请选择组织", trigger: ["change", "blur"] },
    ],
  };
  // 存放编辑前的数据record
  private editBeforeRecord: any = null;
  // 新增表单数据
  private addForm: any = {
    name: "",
    orgId: undefined,
  };
  private handleChange(val: any) {
    this.pagination.current = 1;
    this.queryId = val;
    this.getDataByCondition();
  }
  // 编辑表单数据
  private editForm: any = {
    name: "",
    orgId: undefined,
    orgName: "",
  };
  // 分页数据
  private pagination: any = {
    total: 0,
    current: 1,
    pageSize: 10,
    showSizeChanger: true,
    showQuickJumper: true,
    pageSizeOptions: ["10", "30", "60", "100"],
    showTotal: (total: number) => `共有 ${this.pagination.total} 条数据`, //分页中显示总的数据
  };
  // 站点信息
  private monitorPoints: any = [];
  // 选中的设备id
  private deviceIds: any = [];
  // 地图数据
  private map: any = {
    center: { lng: 116.404, lat: 39.915 },
    zoom: 14,
    points: [],
    chooseCenter: {
      point: { lng: "", lat: "" },
      flag: false,
    },
  };
  // 监听站点名称变化
  @Watch("searchName", {
    deep: true,
    immediate: true,
  })
  private watchName() {
    this.pagination.current = 1;
    this.getDataByCondition();
  }
  // 生命周期函数
  private created() {
    this.getAllOrg();
    this.getDataByCondition();
  }
  // 监听分页数据下标变化
  private handlerTableChange(pagination: any, filter: any, sorter: any): void {
    this.pagination.current = pagination.current;
    this.pagination.pageSize = pagination.pageSize;
    this.pagination.total = pagination.total;
    this.getDataByCondition();
  }
 
  // 获得所有组织
  private getAllOrg() {
    get("organization/queryNames", {}).then((res) => {
      this.orgData = res.data.data.organizationVOs.reverse();
    });
  }
  // 查询所有区域范围数据
  private getDataByCondition() {
    let params = {};
    if (this.queryId === undefined) {
      params = {
        name: this.searchName,
        current: this.pagination.current,
        size: this.pagination.pageSize,
      };
    } else {
      params = {
        orgId: this.queryId,
        name: this.searchName,
        current: this.pagination.current,
        size: this.pagination.pageSize,
      };
    }
    get("servicesScope/getDataByCondition", params).then((res: any) => {
      if (res.data.code === 0) {
        this.dataSource = res.data.data.servicesScopes;
        this.pagination.total = res.data.data.totalNumber;
      } else {
        console.log("所有数据列表获取失败!");
      }
    });
  }
  // 新增成功
  private addOK() {
    post("servicesScope/insert", {
      name: this.addForm.name,
      organizationId: this.addForm.orgId,
    })
      .then((res: any) => {
        if (res.data.code === 0) {
          this.getDataByCondition();
          this.addShowOrHiddenFlag = false;
          this.addForm.name = "";
          this.addForm.orgId = undefined;
          this.$message.success(res.data.message);
        } else {
          this.$message.warning(res.data.message);
        }
      })
      .catch((err: any) => {
        this.$message.error("新增失败!");
      });
  }
  // 新增显示
  private handleModalVisible(flag: boolean) {
    this.addShowOrHiddenFlag = flag;
  }
  // 新增取消
  private addCancel() {
    this.addForm.name = "";
    this.addForm.orgId = undefined;
    this.addShowOrHiddenFlag = false;
  }
  // 编辑显示
  private editShow(flag: boolean, record: any) {
    this.editBeforeRecord = record;
    this.editShowOrHiddenFlag = flag;
    this.editForm.name = record.name;
    this.editForm.orgId = record.organizationId;
    this.editForm.orgName = record.organization_name;
    this.editBeforeRecord = record;
  }
  // 确认编辑
  private editSave() {
    this.$refs.editRulesForm.validate((valid: any) => {
      if (valid) {
        const name =
          this.editForm.name === this.editBeforeRecord.name
            ? null
            : this.editForm.name;
        const organizationId =
          this.editForm.orgId === this.editBeforeRecord.organizationId
            ? null
            : this.editForm.orgId;
        if (name === null && organizationId === null) {
          this.$message.warning("未修改");
        } else {
          post("servicesScope/update", {
            id: this.editBeforeRecord.id,
            name: name,
            organizationId: organizationId,
          }).then((res: any) => {
            if (res.data.code === 0) {
              this.getDataByCondition();
              this.editShowOrHiddenFlag = false;
              this.editBeforeRecord = null;
              this.$message.success(res.data.message);
            } else {
              this.$message.warning(res.data.message);
            }
          });
        }
      }
    });
  }
  // 取消编辑
  private editCancel() {
    this.editShowOrHiddenFlag = false;
  }
 
  // 显示区域点弹窗
  private areaPointConfiguration(flag: boolean, record: any) {
    this.areaPointConfigurationFlag = flag;
    this.mapRecord = record;
    get("device/selectMonitorPiontAndDeviceByOrgId", {
      organization_id: record.organizationId,
    }).then((res) => {
      if (res.data.code === 0) {
        this.monitorPoints = res.data.data;
        if (this.monitorPoints.length > 0) {
          this.map.center.lng = this.monitorPoints[0].longitude;
          this.map.center.lat = this.monitorPoints[0].latitude;
        }
        this.treeData = this.monitorPoints.map((item: any) => {
          let devices = [];
          if (item.devices.length > 0) {
            devices = item.devices.map((device: any) => {
              const d = {
                key: item.id + "-" + device.id,
                title: device.name,
                value: {
                  longitude: device.longitude,
                  latitude: device.latitude,
                },
              };
              return d;
            });
          }
          const obj = {
            key: item.id,
            title: item.name,
            value: {
              longitude: item.longitude,
              latitude: item.latitude,
            },
            children: devices,
          };
          return obj;
        });
        if (this.treeData.length > 0) {
          if (record.boundary !== null) {
            const points = record.boundary.split(";").map((item) => {
              const point = item.split(",");
              const obj = { lng: point[0], lat: point[1] };
              return obj;
            });
            this.polyline.points = points;
          }
          if (
            !(
              record.boundary === null &&
              record.centerLatitude === null &&
              record.centerLongitude === null
            )
          ) {
            this.map.chooseCenter.point.lat = record.centerLatitude;
            this.map.chooseCenter.point.lng = record.centerLongitude;
            get("servicesScopeDevice/getDevicesAndMonitorPoint", {
              servicesScopeId: record.id,
            }).then((res: any) => {
              if (res.data.code === 0) {
                const selectDevices = res.data.data;
                this.map.center.lat = record.centerLatitude;
                this.map.center.lng = record.centerLongitude;
                const devicesExit = selectDevices.map((item: any) => {
                  if (item.devices.length > 0) {
                    const children = item.devices.map((device: any) => {
                      const treeDevice = {
                        key: item.id + "-" + device.id,
                        title: device.name,
                        value: {
                          longitude: device.longitude,
                          latitude: device.latitude,
                        },
                      };
                      return treeDevice;
                    });
                    const treeDevices = {
                      key: item.id,
                      title: item.name,
                      children: children,
                    };
                    return treeDevices;
                  }
                });
                if (devicesExit.length > 0) {
                  const points = new Array();
                  devicesExit.forEach((item: any) => {
                    item.children.forEach((child: any) => {
                      this.checkedKeys.push(child.key);
                      const point = {
                        lng: child.value.longitude,
                        lat: child.value.latitude,
                      };
                      const deviceId = child.key.substr(
                        child.key.indexOf("-") + 1,
                        child.key.length
                      );
                      const obj = {
                        point: point,
                        deviceId: deviceId,
                      };
                      points.push(obj);
                    });
                  });
                  this.map.points = points;
                }
              }
            });
          }
        }
      }
    });
  }
  // 初始化地图
  private handler({ BMap, map }) {
    this.map.zoom = 14;
  }
  // 隐藏区域点弹窗
  private editCancelMap() {
    this.areaPointConfigurationFlag = false;
    this.map.points = [];
    this.polyline.points = [];
    this.polyline.editing = false;
    this.map.chooseCenter.point.lng = "";
    this.map.chooseCenter.point.lat = "";
    this.map.chooseCenter.flag = false;
    this.checkedKeys = [];
  }
  // 保存区域点的修改
  private editAreaPoint() {
    let lnglat = this.polyline.points.map((point: any) => {
      return point.lng + "," + point.lat;
    });
    const boundary = lnglat.join(";");
    if (boundary === "") {
      this.$message.warning("请进行区域绘制!");
      return;
    }
    if (
      (this.map.chooseCenter.point.lat === "" ||
        this.map.chooseCenter.point.lat === null) &&
      (this.map.chooseCenter.point.lng === "" ||
        this.map.chooseCenter.point.lng === null)
    ) {
      this.$message.warning("请选择中心点!");
      return;
    }
    post("servicesScope/addBoundaryBindDevice", {
      devices: this.deviceIds.join(","),
      servicesScope: {
        id: this.mapRecord.id,
        name: null,
        organizationId: null,
        centerLongitude: this.map.chooseCenter.point.lng,
        centerLatitude: this.map.chooseCenter.point.lat,
        boundary: boundary,
      },
    }).then((res: any) => {
      if (res.data.code === 0) {
        this.getDataByCondition();
        this.areaPointConfigurationFlag = false;
        this.map.points = [];
        this.polyline.points = [];
        this.polyline.editing = false;
        this.map.chooseCenter.point.lng = "";
        this.map.chooseCenter.point.lat = "";
        this.checkedKeys = [];
        this.map.chooseCenter.flag = false;
        this.$message.success(res.data.message);
      } else {
        this.$message.warning(res.data.message);
      }
    });
  }
  // 树结构文字选中
  // private onSelect(selectedKeys: any, info: any) {
  //   console.log('onSelect', info);
  //   console.log('selectedKeys', selectedKeys);
  // }
  // 树结构选中框选中
  private onCheck(checkedKeys: any, info: any) {
    this.deviceIds = checkedKeys
      .filter((item: any) => {
        if (typeof item === "string") {
          return item;
        }
      })
      .map((item: any) => {
        return item.substr(item.indexOf("-") + 1, item.length);
      });
 
    let infos = info.checkedNodes;
    if (infos.length > 0) {
      infos = infos.filter((item: any) => {
        if (typeof item.key === "string") {
          return item;
        }
      });
      this.map.points = infos.map((item: any) => {
        const point = {
          lng: item.data.props.value.longitude,
          lat: item.data.props.value.latitude,
        };
        const index = item.key.indexOf("-");
 
        const pointObj = {
          point: point,
          deviceId: item.key.substring(index + 1, item.key.length),
        };
        return pointObj;
        // const id = item.key.substr()
      });
    } else {
      this.map.points = [];
    }
  }
  // 显示隐藏绘制框
  private toggle() {
    if (this.map.points.length === 0) {
      this.$message.warning("请选择设备点再进行区域绘制!");
      return;
    }
    if (this.map.points.length === 1) {
      this.$message.warning("至少选择两台设备!");
      return;
    }
    this.polyline.editing = !this.polyline.editing;
    if (this.polyline.editing) {
      if (this.polyline.points.length === 0) {
        const lngMaxOrMin = this.map.points.sort((item1: any, item2: any) => {
          return item1.point.lng - item2.point.lng;
        });
        const lngMin = lngMaxOrMin[0];
        const lngMax = lngMaxOrMin[lngMaxOrMin.length - 1];
        const latMaxOrMin = this.map.points.sort((item1: any, item2: any) => {
          return item1.point.lat - item2.point.lat;
        });
        const latMin = latMaxOrMin[0];
        const latMax = latMaxOrMin[latMaxOrMin.length - 1];
        const points = [
          { lng: lngMax.point.lng, lat: latMax.point.lat },
          { lng: lngMax.point.lng, lat: latMin.point.lat },
          { lng: lngMin.point.lng, lat: latMin.point.lat },
          { lng: lngMin.point.lng, lat: latMax.point.lat },
        ];
        this.polyline.points = points;
      }
    }
  }
  // 多边形变化
  private updatePolygonPath(e: any) {
    this.polyline.points = e.target.getPath();
  }
  // 选择中心点
  private chooseCenter() {
    this.map.chooseCenter.flag = !this.map.chooseCenter.flag;
  }
  // 点击地图中心点显示
  private mapClick(e: any) {
    if (this.map.chooseCenter.flag) {
      const { lng, lat } = e.point;
      this.map.chooseCenter.point.lng = lng;
      this.map.chooseCenter.point.lat = lat;
    }
  }
 
  // 删除数据
  private delete(record: any) {
    post("servicesScope/delete", {
      id: record.id,
    }).then((res: any) => {
      if (res.data.code === 0) {
        this.pagination.current = 1;
        this.getDataByCondition();
        this.$message.success(res.data.message);
      }
    });
  }
 
  // 数据操作方法
  private opRender(text: string, record: any, index: number) {
    return (
      <div>
        <a onClick={() => this.editShow(true, record)}> 编辑 </a>
        <a-divider type="vertical" />
        <a onClick={() => this.areaPointConfiguration(true, record)}>
          {" "}
          经纬度区域点配置{" "}
        </a>
        <a-divider type="vertical" />
        <a-popconfirm
          title="确认删除吗?"
          ok-text="确定"
          cancel-text="取消"
          onConfirm={() => this.delete(record)}
        >
          <a href="#">删除</a>
        </a-popconfirm>
      </div>
    );
  }
}
</script>
 
<style scoped>
/deep/.ant-modal-body {
  padding: 10px;
}
/deep/.ant-layout-sider {
  background: #fff;
  line-height: 120px;
}
/deep/.ant-tree-node-content-wrapper {
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}
/deep/.BMap_cpyCtrl {
  display: none;
}
/deep/.anchorBL {
  display: none;
}
</style>