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
<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 stationLevel"
                    :key="index"
                    :value="index"
                  >
                    {{ item }}
                  </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="guid"
        >
          <a-input
            placeholder="请输入站点编号"
            type="string"
            v-model="addForm.guid"
          />
        </a-form-model-item>
        <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 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="经度"
          prop="longitude"
        >
          <a-input
            placeholder="请输入经度"
            type="string"
            v-model="addForm.longitude"
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="纬度"
          prop="latitude"
        >
          <a-input
            placeholder="请输入纬度"
            type="string"
            v-model="addForm.latitude"
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="位置"
          has-feedback
          prop="position"
        >
          <!--            v-decorator="['position', { rules: [{ required: true, message: '定位级别不能为空'  }] }]"-->
          <a-cascader
            :options="areaData"
            placeholder="选择城市"
            @change="positionLevel"
            labelInValue
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="站点类型"
          prop="stationLevel"
        >
          <a-select
            placeholder="选择站点类型"
            type="string"
            allow-clear
            show-search
            v-model="addForm.stationLevel"
          >
            <a-select-option
              v-for="(item, index) in stationLevel"
              :key="index"
              :value="index"
              >{{ item }}</a-select-option
            >
          </a-select>
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="描述"
          prop="desc"
        >
          <a-input placeholder="描述" type="string" v-model="addForm.desc" />
        </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="guid"
        >
          <a-input
            placeholder="请输入站点编号"
            type="string"
            v-model="editForm.guid"
          />
        </a-form-model-item>
        <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 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="经度"
          prop="longitude"
        >
          <a-input
            placeholder="请输入经度"
            type="string"
            v-model="editForm.longitude"
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="纬度"
          prop="latitude"
        >
          <a-input
            placeholder="请输入纬度"
            type="string"
            v-model="editForm.latitude"
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="位置"
          has-feedback
          prop="position"
        >
          <!--            v-decorator="['position', { rules: [{ required: true, message: '定位级别不能为空'  }] }]"-->
          <a-cascader
            v-model="editForm.position"
            :options="areaData"
            placeholder="双击选择城市"
            @change="positionLevel"
            labelInValue
          />
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="站点类型"
          prop="stationLevel"
        >
          <a-select
            placeholder="选择站点类型"
            type="string"
            allow-clear
            show-search
            v-model="editForm.stationLevel"
          >
            <a-select-option
              v-for="(item, index) in stationLevel"
              :key="index"
              :value="index"
              >{{ item }}</a-select-option
            >
          </a-select>
        </a-form-model-item>
        <a-form-model-item
          :labelCol="{ span: 5 }"
          has-feedback
          :wrapperCol="{ span: 15 }"
          label="描述"
          prop="desc"
        >
          <a-input placeholder="描述" type="string" v-model="editForm.desc" />
        </a-form-model-item>
      </a-form-model>
    </a-modal>
    <a-modal
      title="政府站点编辑"
      destroyOnClose
      :visible="editSiteShowOrHiddenFlag"
      :rules="siteRules"
      @ok="editSiteSave"
      @cancel="editSiteCancel"
      okText="保存"
    >
      <a-form-model
        style="margin-top: 8px"
        :model="editSiteForm"
        ref="editSiteRulesForm"
      >
        <a-form-model-item
          has-feedback
          :labelCol="{ span: 5 }"
          :wrapperCol="{ span: 15 }"
          label="站点编号"
          prop="guid"
        >
          <a-input
            placeholder="请输入站点编号"
            type="string"
            v-model="editSiteForm.guid"
          />
        </a-form-model-item>
        <p class="errInfor">要求:更换站点编号时间为每小时45-50分之间!</p>
      </a-form-model>
    </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";
@Component({
  components: {},
})
export default class govMonitorPoint extends Vue {
  // 定义样式
  private wrapperCol: any = {
    sm: { span: 16 }, //控制文本框的长度
  };
  // 站点id查询条件
  private stationLevelId: any = "";
  // 列头
  private columns: any[] = [
    {
      title: "序号",
      dataIndex: "key",
      key: "key",
      align: "center",
      customRender: (text: any, record: any, index: any) => `${index + 1}`,
      width: 60,
    },
    {
      title: "站点编号",
      dataIndex: "guid",
    },
 
    {
      title: "名称",
      dataIndex: "name",
    },
    {
      title: "经度",
      dataIndex: "longitude",
    },
    {
      title: "纬度",
      dataIndex: "latitude",
    },
    {
      title: "定位",
      dataIndex: "position",
    },
    {
      title: "站点类型",
      dataIndex: "stationLevelName",
    },
    {
      title: "描述",
      dataIndex: "desc",
    },
    {
      title: "操作",
      customRender: this.opRender,
    },
  ];
  // 用于查询站点模糊查询
  private searchName: string = "";
  // 用于检验是否有数据
  private tableLoading: boolean = false;
  // 数据
  private dataSource: any[] = [];
  // 显示新增隐藏标识
  private addShowOrHiddenFlag: boolean = false;
  // 显示编辑隐藏标识
  private editShowOrHiddenFlag: boolean = false;
 
  private editSiteShowOrHiddenFlag: boolean = false;
  // 存放地理位置信息
  private areaData: any = JSON.parse(JSON.stringify(org));
  // 指定新增和编辑规则
  private rules: any = {
    guid: [
      {
        required: true,
        message: "设备编号不能为空",
        trigger: ["change", "blur"],
      },
    ],
    name: [
      { required: true, message: "名称不能为空", trigger: ["change", "blur"] },
    ],
    longitude: [
      { required: true, message: "经度不能为空", trigger: ["change", "blur"] },
    ],
    latitude: [
      { required: true, message: "纬度不能为空", trigger: ["change", "blur"] },
    ],
    position: [
      {
        required: true,
        message: "请选择定位级别",
        trigger: ["change", "blur"],
      },
    ],
    stationLevel: [
      {
        required: true,
        message: "请选择站点类型",
        trigger: ["change", "blur"],
      },
    ],
  };
  private siteRules: any = {
    guid: [
      {
        required: true,
        message: "设备编号不能为空",
        trigger: ["change", "blur"],
      },
    ],
  };
  // 政府站点类型
  private stationLevel: any = {};
  // 存放编辑前的数据record
  private editBeforeRecord: any = null;
  private editBeforeSiteRecord: any = null;
  // 新增表单数据
  private addForm: any = {
    guid: "",
    name: "",
    longitude: "",
    latitude: "",
    position: [],
    stationLevel: undefined,
    desc: "",
  };
  // 编辑表单数据
  private editForm: any = {
    id: -1,
    guid: "",
    name: "",
    longitude: "",
    latitude: "",
    position: [],
    stationLevel: undefined,
    desc: "",
  };
  // 编辑表单数据
  private editSiteForm: any = {
    id: -1,
    guid: "",
  };
  // 分页数据
  private pagination: any = {
    total: 0,
    current: 1,
    pageSize: 10,
    showSizeChanger: true,
    showQuickJumper: true,
    pageSizeOptions: ["10", "30", "60", "100"],
    showTotal: (total: number) => `共有 ${this.pagination.total} 条数据`, //分页中显示总的数据
  };
  // 监听站点名称变化
  @Watch("searchName", {
    deep: true,
    immediate: true,
  })
  private watchName(newVal: string, oldVal: string) {
    this.searchName = newVal;
    this.pagination.current = 1;
    this.queryGovDatas();
  }
  // 生命周期函数
  private created() {
    this.selectDatas();
    this.queryGovDatas();
  }
  // 监听分页数据下标变化
  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.queryGovDatas();
  }
  //下拉查询框方法
  private handleChange(selectedItems: any) {
    if (selectedItems) {
      this.stationLevelId = selectedItems;
    } else {
      this.stationLevelId = "";
    }
    this.pagination.current = 1;
    this.queryGovDatas();
  }
  // 定位级别数据
  private positionLevel(val: any, selectedOptions: any) {
    if (selectedOptions && selectedOptions.length > 0) {
      this.addForm.position = selectedOptions;
    } else {
      this.addForm.position = undefined;
    }
  }
  // 获取下拉框数据
  private selectDatas() {
    get("dict/data/query?type=stationLevel ", {})
      .then((res) => {
        if (res.data.code === 0) {
          this.stationLevel = res.data.data;
        }
      })
      .catch((err) => {
        console.log(err);
      });
  }
  // 查询所有站点信息
  private queryGovDatas() {
    get("govMonitorPoint/getGovMonitorPointByCondition", {
      current: this.pagination.current,
      size: this.pagination.pageSize,
      name: this.searchName,
      stationLevel: this.stationLevelId,
    }).then((res: any) => {
      if (res.data.code === 0) {
        this.pagination.total = res.data.data.totalNumber;
        this.pagination.current = res.data.data.current;
        const govDatas = res.data.data.govMonitorPointList;
        if (govDatas.length > 0) {
          for (let i = 0; i < govDatas.length; i++) {
            for (let j = 0; j < govDatas[i].position.length; j++) {
              govDatas[i].stationLevelName = this.stationLevel[
                govDatas[i].stationLevel
              ];
            }
          }
        }
        this.dataSource = govDatas;
      }
    });
  }
  // 新增显示
  private handleModalVisible(flag: boolean) {
    this.addShowOrHiddenFlag = flag;
  }
  // 新增成功
  private addOK() {
    this.$refs.addRulesForm.validate((valid: any) => {
      if (valid) {
        post("govMonitorPoint/insert", {
          guid: this.addForm.guid, //政府站点编码
          name: this.addForm.name, //名称
          longitude: this.addForm.longitude, //经度
          latitude: this.addForm.latitude, //纬度
          provinceCode: this.addForm.position[0].value,
          cityCode: this.addForm.position[1].value,
          areaCode: this.addForm.position[2].value,
          stationLevel: this.addForm.stationLevel,
          desc: this.addForm.desc, //备注
        }).then((res: any) => {
          if (res.data.code === 0) {
            this.pagination.current = 1;
            this.$message.success(res.data.message);
            this.queryGovDatas();
          } else {
            this.$message.warning(res.data.message);
          }
        });
        this.addShowOrHiddenFlag = false;
        this.addForm = {
          guid: "",
          name: "",
          longitude: "",
          latitude: "",
          position: [],
          stationLevel: undefined,
          desc: "",
        };
        this.addShowOrHiddenFlag = false;
      }
    });
  }
  // 新增取消
  private addCancel() {
    this.addForm = {
      guid: "",
      name: "",
      longitude: "",
      latitude: "",
      position: [],
      stationLevel: undefined,
      desc: "",
    };
    this.addShowOrHiddenFlag = false;
  }
  // 编辑显示
  private editShow(flag: boolean, record: any) {
    this.editShowOrHiddenFlag = flag;
    this.editBeforeRecord = record;
    const positon = [];
    positon.push(record.provinceCode);
    positon.push(record.cityCode);
    positon.push(record.areaCode);
    this.editForm = {
      id: record.id,
      guid: record.guid,
      name: record.name,
      longitude: record.longitude,
      latitude: record.latitude,
      position: positon,
      stationLevel: record.stationLevel,
      desc: record.desc === undefined ? "" : record.desc,
    };
  }
  // 编辑显示
  private editSiteShow(flag: boolean, record: any) {
    this.editSiteShowOrHiddenFlag = flag;
    this.editBeforeSiteRecord = record;
    const positon = [];
    positon.push(record.provinceCode);
    positon.push(record.cityCode);
    positon.push(record.areaCode);
    this.editSiteForm = {
      id: record.id,
      guid: record.guid,
    };
  }
  // 编辑站点保存
  private editSiteSave() {
    this.$refs.editSiteRulesForm.validate((valid: any) => {
      if (valid) {
        const guid =
          this.editSiteForm.guid === this.editBeforeSiteRecord.guid
            ? null
            : this.editSiteForm.guid;
        if (!guid) {
          this.$message.warning("未修改!");
        } else {
          get("govMonitorPoint/updateGuid", {
            id: this.editSiteForm.id,
            guid,
          }).then((res: any) => {
            if (res.data.code === 0) {
              this.$message.success(res.data.message);
              this.editSiteForm = {
                id: -1,
                guid: "",
              };
              this.editSiteShowOrHiddenFlag = false;
              this.queryGovDatas();
            } else {
              this.$message.warning(res.data.message);
            }
          });
        }
      }
    });
  }
  private editSiteCancel() {
    this.editForm = {
      id: -1,
      guid: "",
    };
    this.editSiteShowOrHiddenFlag = false;
  }
  // 编辑保存
  private editSave() {
    this.$refs.editRulesForm.validate((valid: any) => {
      if (valid) {
        const name =
          this.editForm.name === this.editBeforeRecord.name
            ? null
            : this.editForm.name;
        const guid =
          this.editForm.guid === this.editBeforeRecord.guid
            ? null
            : this.editForm.guid;
        const longitude =
          this.editForm.longitude === this.editBeforeRecord.longitude
            ? null
            : this.editForm.longitude;
        const latitude =
          this.editForm.latitude === this.editBeforeRecord.latitude
            ? null
            : this.editForm.latitude;
        const position =
          this.editForm.position[0] === this.editBeforeRecord.provinceCode &&
          this.editForm.position[1] === this.editBeforeRecord.cityCode &&
          this.editForm.position[2] === this.editBeforeRecord.areaCode
            ? null
            : this.editForm.position;
        const stationLevel =
          this.editForm.stationLevel === this.editBeforeRecord.stationLevel
            ? null
            : this.editForm.stationLevel;
        const desc =
          this.editBeforeRecord.desc === undefined
            ? this.editForm.desc === ""
              ? null
              : this.editForm.desc
            : this.editForm.desc === this.editBeforeRecord.desc
            ? null
            : this.editForm.desc;
        if (
          !(
            name ||
            guid ||
            longitude ||
            latitude ||
            position ||
            stationLevel ||
            desc
          )
        ) {
          this.$message.warning("未修改!");
        } else {
          post("govMonitorPoint/update", {
            id: this.editForm.id,
            guid,
            name,
            longitude,
            latitude,
            provinceCode: position === null ? null : position[0],
            cityCode: position === null ? null : position[1],
            areaCode: position === null ? null : position[2],
            stationLevel,
            desc,
          }).then((res: any) => {
            if (res.data.code === 0) {
              this.$message.success(res.data.message);
              this.editForm = {
                id: -1,
                guid: "",
                name: "",
                longitude: "",
                latitude: "",
                position: [],
                stationLevel: undefined,
                desc: "",
              };
              this.editShowOrHiddenFlag = false;
              this.queryGovDatas();
            } else {
              this.$message.warning(res.data.message);
            }
          });
        }
      }
    });
  }
  // 编辑取消
  private editCancel() {
    this.editForm = {
      id: -1,
      guid: "",
      name: "",
      longitude: "",
      latitude: "",
      position: [],
      stationLevel: undefined,
      desc: "",
    };
    this.editShowOrHiddenFlag = false;
  }
  // 删除
  private delete(record: any) {
    post("govMonitorPoint/delete", {
      id: record.id,
    }).then((res: any) => {
      if (res.data.code === 0) {
        this.$message.success(res.data.message);
        this.pagination.current = 1;
        this.queryGovDatas();
      } else {
        this.$message.warning(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-popconfirm
          title="确认删除吗?"
          ok-text="确定"
          cancel-text="取消"
          onConfirm={() => this.delete(record)}
        >
          <a href="#">删除</a>
        </a-popconfirm>
        <a-divider type="vertical" />
        <a onClick={() => this.editSiteShow(true, record)}> 政府站点修改 </a>
      </div>
    );
  }
}
</script>
 
<style scoped>
.errInfor {
  text-align: center;
  color: red;
  font-size: 15px;
  font-weight: 700;
}
</style>