longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
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
<template>
  <div class="params-dialog white-bg">
    <el-form ref="ruleForm" size="mini" label-position="top" :model="params" :rules="rules">
      <el-row :gutter="layout.gutter">
        <el-col :span="layout.span">
          <el-form-item label="地图字段" prop="dataName">
            <el-select v-model="params.dataName" placeholder="请选择地图" @change="mapChange" :filterable="true">
              <el-option v-for="item in mapList" :key="item.value" :label="item.label" :value="item.value">
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
      </el-row>
      <div class="form-footer">
        <three-btn @click="submitFrom">确定</three-btn>
      </div>
    </el-form>
    <!-- 省 -->
    <el-dialog v-cloak top="0" class="dialog-center" title='请选择省' :visible.sync="province.dialogVisible"
               width="280px" append-to-body>
      <el-form size="small">
        <el-form-item label="省">
          <el-select v-model="province.value" placeholder="请选择省" :filterable="true">
            <el-option v-for="province in province.list" :key="province.name" :label="province.name"
                       :value="province.name"></el-option>
          </el-select>
        </el-form-item>
      </el-form>
      <div style="text-align: right;">
        <el-button type="primary" size="mini" @click="provinceOk">确定</el-button>
        <el-button size="mini" @click="province.dialogVisible = false">取消</el-button>
      </div>
    </el-dialog>
    <!-- 市 -->
    <el-dialog v-cloak top="0" class="dialog-center" title='请选择市' :visible.sync="city.dialogVisible" width="280px"
               append-to-body>
      <el-form size="small">
        <el-form-item label="市">
          <el-select v-model="city.value" placeholder="请选择市" :filterable="true">
            <el-option v-for="city in city.list" :key="city.name" :label="city.name" :value="city.name">
            </el-option>
          </el-select>
        </el-form-item>
      </el-form>
      <div style="text-align: right;">
        <el-button type="primary" size="mini" @click="cityOk">确定</el-button>
        <el-button size="mini" @click="city.dialogVisible = false">取消</el-button>
      </div>
    </el-dialog>
    <!-- 区县 -->
    <el-dialog top="0" class="dialog-center" title='请选择区县' :visible.sync="county.dialogVisible" width="280px"
               append-to-body>
      <el-form size="small">
        <el-form-item label="区">
          <el-select v-model="county.value" placeholder="请选择市" :filterable="true">
            <el-option v-for="county in county.list" :key="county.name" :label="county.name"
                       :value="county.name"></el-option>
          </el-select>
        </el-form-item>
      </el-form>
      <div style="text-align: right;">
        <el-button type="primary" size="mini" @click="countyOk">确定</el-button>
        <el-button size="mini" @click="county.dialogVisible = false">取消</el-button>
      </div>
    </el-dialog>
  </div>
</template>
 
<script>
import {
  LinkagePlus
} from '../../assets/js/tools'
import mapJson from '../../../public/mapJson/js'
import {
  searchProvince,
  searchCity,
  searchCounty,
  addMapOutlineAction
} from '../../assets/js/api.js'
import {
  const_province_city_county
} from '../../assets/js/const'
 
export default {
  props: {
    list: {
      type: Array,
      default() {
        return [];
      },
    },
  },
  data() {
    return {
      layout: {
        span: 24,
        gutter: 16,
      },
      params: {
        StationName1: '', // 省*
        StationName2: '', // 市*
        StationName5: '', // 区县*
        dataName: '', // 数据名称
      },
      linkage: {
        province: '',
        provinces: [],
        city: '',
        cities: [],
        county: '',
        counties: [],
      },
      rules: {
        dataName: [{
          required: true,
          message: '不能为空',
          trigger: 'blur'
        }]
      },
      linkagePlus: new LinkagePlus(),
      province: {
        dialogVisible: false,
        value: '',
        list: [],
      },
      city: {
        dialogVisible: false,
        value: '',
        list: [],
      },
      county: {
        dialogVisible: false,
        value: '',
        list: [],
      },
    }
  },
  methods: {
    // 提交表单设置参数
    submitFrom() {
      this.$refs.ruleForm.validate((valid) => {
        // 校验通过
        if (valid) {
          var tmp = {};
          tmp.province = this.params.StationName1;
          tmp.city = this.params.StationName2;
          tmp.distinct = this.params.StationName5;
          tmp.name = this.params.dataName;
          // 添加地图
          this.addMap(tmp);
        } else {
          this.$layer.msg('存在校验未通过的数据!');
          return false;
        }
      });
    },
    addMap(tmp) {
      let loading = this.$layer.loading(1);
      addMapOutlineAction(tmp).then((res) => {
        let rs = JSON.parse(res.data.result);
        if (rs.code == 1) {
          this.$message({
            type: 'success',
            message: '添加地图成功!'
          });
          // 触发事件
          this.$emit('success');
        } else {
          this.$message({
            type: 'error',
            message: '添加地图失败!'
          });
        }
        // 关闭加载框
        this.$layer.close(loading);
      }).catch((err) => {
        console.log(err);
        // 关闭加载框
        this.$layer.close(loading);
      });
    },
    searchProvince() { // 省
      // 查询后台
      searchProvince().then((res) => {
        var rs = JSON.parse(res.data.result);
        var data = [];
        if (rs.code == 1) {
          var data = rs.data;
        }
 
        // 设置省
        this.linkage.provinces = data;
 
      });
    },
    searchCity() {
      // 构造查询条件
      var searchParams = {
        StationName1: this.linkage.province
      };
      // 查询后台
      searchCity(searchParams).then((res) => {
        var rs = JSON.parse(res.data.result);
        var data = [];
        if (rs.code == 1) {
          data = rs.data;
        }
        // 设置市
        this.linkage.cities = data;
        // 查询区县
        this.searchCounty();
      });
    },
    searchCounty() {
      // 构造查询条件
      var searchParams = {
        StationName1: this.linkage.province,
        StationName2: this.linkage.city
      };
      // 查询后台
      searchCounty(searchParams).then((res) => {
        var rs = JSON.parse(res.data.result);
        var data = [];
        if (rs.code == 1) {
          data = rs.data;
        }
        // 设置区县
        this.linkage.counties = data;
      });
    },
    provinceChange(value) {
      // 初始化市
      this.params.StationName2 = '';
      this.linkage.city = '';
      this.linkage.cities = [];
 
      // 初始化区县
      this.params.StationName5 = '';
      this.linkage.county = '';
      this.linkage.counties = [];
      // 点击其他
      if (value == '其他') {
        var provinces = this.linkagePlus.getProvince();
        this.province.dialogVisible = true;
        this.province.value = provinces[0].name;
        this.province.list = provinces;
        // 恢复上一次选择的内容
        this.params.StationName1 = this.linkage.province;
      } else {
        this.linkage.province = value;
      }
 
      // 查询市
      this.searchCity();
    },
    provinceOk() {
      var value = this.province.value;
      // 获取选择的值
      this.params.StationName1 = value;
      // 记录选择的内容
      this.linkage.province = value;
      if (this.linkage.provinces.indexOf(value) == -1) {
        this.linkage.provinces.push(value);
      }
      // 修改面板显示状态为关闭
      this.province.dialogVisible = false;
 
      // 查询市
      this.searchCity();
    },
    cityChange(value) {
      // 初始化区县
      this.params.StationName5 = '';
      this.linkage.county = '';
      this.linkage.counties = [];
      // 获取省
      var StationName1 = this.params.StationName1;
      // 点击其他
      if (value == '其他') {
        // 恢复上一次选择的内容
        this.params.StationName2 = this.linkage.city;
        // 未选择省
        if (StationName1 == '') {
          // 提出告警
          this.$message({
            type: 'warning',
            message: '请先选择省',
          });
          return;
        }
        var result = this.linkagePlus.getCity(StationName1);
        if (result.code == 1) {
          var cities = result.data;
          this.city.dialogVisible = true;
          this.city.value = cities[0].name;
          this.city.list = cities;
        } else {
          // 提出告警
          this.$message({
            type: 'warning',
            message: result.msg,
          });
        }
      } else {
        this.linkage.city = value;
      }
      // 查询区县
      this.searchCounty();
    },
    cityOk() {
      var value = this.city.value;
      // 获取选择的值
      this.params.StationName2 = value;
      // 记录选择的内容
      this.linkage.city = value;
      if (this.linkage.cities.indexOf(value) == -1) {
        this.linkage.cities.push(value);
      }
      // 修改面板显示状态为关闭
      this.city.dialogVisible = false;
 
      // 查询区县
      this.searchCounty();
    },
    countyChange(value) {
      // 获取省
      var StationName1 = this.params.StationName1;
      // 获取市
      var StationName2 = this.params.StationName2;
      // 点击其他
      if (value == '其他') {
        // 恢复上一次选择的内容
        this.params.StationName5 = this.linkage.county;
        // 未选择省
        if (StationName1 == '') {
          // 提出告警
          this.$message({
            type: 'warning',
            message: '请先选择省',
          });
          return;
        }
 
        // 未选择市
        if (StationName2 == '') {
          // 提出告警
          this.$message({
            type: 'warning',
            message: '请先选择市',
          });
          return;
        }
        var result = this.linkagePlus.getCounty(StationName1, StationName2);
        if (result.code == 1) {
          var counties = result.data;
          this.county.dialogVisible = true;
          this.county.value = counties[0].name;
          this.county.list = counties;
        } else {
          // 提出告警
          this.$message({
            type: 'warning',
            message: result.msg,
          });
        }
      } else {
        this.linkage.county = value;
      }
    },
    countyOk() {
      var value = this.county.value;
      // 获取选择的值
      this.params.StationName5 = value;
      // 记录选择的内容
      this.linkage.county = value;
      if (this.linkage.counties.indexOf(value) == -1) {
        this.linkage.counties.push(value);
      }
      // 修改面板显示状态为关闭
      this.county.dialogVisible = false;
    },
    mapChange(value) {
      let mapInfo = mapJson.getItemByValue(value, this.mapList);
      this.params.StationName1 = mapInfo.StationName1;
      this.params.StationName2 = mapInfo.StationName2;
      this.params.StationName5 = mapInfo.StationName5;
    }
  },
  computed: {
    mapList() {
      let mapList = mapJson.mapList();
      let list = this.list;
      return mapList.filter(item=>{
        let isIn = false;
        for(let i=0; i<list.length; i++) {
          if(list[i].name == item.value) {
            isIn = true;
            break;
          }
        }
        return !isIn;
      });
    },
  },
  mounted() {
    // 设置省市区县的数据
    this.linkagePlus.setData(const_province_city_county);
    // 查询省-市-区县
    this.searchProvince();
  },
}
</script>
 
<style scoped>
.params-dialog {
  padding: 15px;
}
.white-bg {
  background-color: #FFFFFF;
}
</style>