Vue realizes cascading selection of provinces, cities and districts

Vue realizes cascading selection of provinces, cities and districts

Recently, I need to implement a cascading selection effect for provinces, cities and districts. The data for provinces, cities and districts all use local data, and the logic for implementation is a bit complicated. I will list the summary of the PC side here to share. The code for the mobile side is similar. Except for HTML, the rest can be copied and used according to needs. I hope this helps you all.

1. Rendering

PC side effect picture:

Mobile terminal effect diagram:

2. Implementation Logic

My implementation logic here is to first obtain the city through the province, and then obtain the district and county through the city. Since the street is not fixed, let the user enter it by himself. The logic for obtaining the corresponding urban area is: each province, city, district and county has a unique code, and the first two digits of the province code are the same as the city, so the city can be filtered out by interception, and the first four digits of the city code are the same as the district and county, so the district and county can also be filtered out by interception.

Because I used the select component of the element-ui framework to implement the PC side, the data structure of provinces, cities and districts is as follows:

The mobile terminal is implemented using the van-picker component of the vant framework. The data structure is different from that of the PC terminal, so the data structure of provinces, cities and districts is as follows:

3. Related Code

<!--PC code-->
 <el-form :inline="true" :model="addressForm">
        <el-form-item label="省" label-width="100px" prop="province">
          <el-select v-model="addressForm.province" placeholder="Please select" style="width:250px" @change="bindProvinceChange">
          <!-- :value="item.value+'|'+item.label" If you want to get both the number and the province name, the value assignment can be written like this, and then cut with |. If you don't need to get both, just assign one. -->
            <el-option v-for="item in provinceList" :label="item.label" :value="item.value+'|'+item.label"></el-option>
          </el-select>
        </el-form-item>
        <br />
        <el-form-item label="市" label-width="100px" prop="city">
          <el-select v-model="addressForm.city" placeholder="Please select" style="width:250px" @change="bindCityChange">
            <el-option v-for="item in cityList" :label="item.label" :value="item.value+'|'+item.label"></el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="District/County" label-width="100px" prop="county">
          <el-select v-model="addressForm.county" placeholder="Please select" style="width:250px" @change="bindCountyChange">
            <el-option v-for="item in countyList" :label="item.label" :value="item.value+'|'+item.label"></el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="Street/Town" label-width="100px" prop="street">
          <el-input type="textarea" :rows="3" resize="none" placeholder="Please enter street information" v-model="addressForm.street"
            style="width:250px">
          </el-input>
        </el-form-item>
</el-form>

The code in this section is basically the same. The only difference is that the onchange event on the mobile terminal can directly obtain the unique number, and there is no need to cut it like on the PC side. You can modify it according to your needs.

var app = new Vue({
      el: '#app',
       data: {
    addressForm: {
           province: '',
           city: '',
           county: '',
           street: ''
         },
         // The data of provinces, cities and districts are placed in another file. I am importing the provinceList directly from another file: areaList.provinceList,
         cityList: [],
         countyList: []
  },
  methods:{
   // Province bindProvinceChange(vals) {
         // Get the unique number corresponding to the province console.log('data========>', vals)
           let arr = vals.split('|')
           this.addressForm.province = arr[1]
           this.addressForm.city = '';
           this.addressForm.county = '';
           this.addressForm.street = '';
           // Get the corresponding city this.cityList = this.addrInit(2, areaList.cityList, arr[0]);
         },
         // City bindCityChange(vals) {
           console.log('vals------->', vals)
           this.addressForm.county = '';
           this.addressForm.street = '';
           let arr = vals.split('|')
           this.addressForm.city = arr[1]
            // Get the corresponding district and county this.countyList = this.addrInit(4, areaList.countyList, arr[0]);
         },
         //District and county bindCountyChange(vals) {
           console.log('vals------======>', vals)
           this.addressForm.street = '';
           let arr = vals.split('|')
           this.addressForm.county = arr[1]
         },
         // Convert the object to an array transArray(obj) {
           let arr = [];
           for (let i in obj) {
             arr.push(obj[i]);
           }
           return arr;
         },
         /**
          * Encapsulation method - get the corresponding province, city, and district* @param {number} num The number of digits to be intercepted* @param {*} list The array to be queried* @param {*} str The string to be intercepted* @returns
          */
         addrInit(num, list, str) {
           let strSub = str.substr(0, num);
           let arr = this.transArray(list);
           let newArr = arr.filter(function (val, index, arr) {
             let newStr = val.value.substr(0, num);
             return newStr == strSub;
           });
           return newArr;
         },
  }
 })

I hope this helps you all! !

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • General component for selecting provincial, municipal and district addresses based on Vue+ElementUI
  • Vue implements mobile terminal province, city and district selection
  • Vue implements province, city and district selection on mobile phone
  • Vue.js imitates the selection component example code of Jingdong's three-level linkage of provinces, cities and districts
  • Implementation of Vue province, city and district three-link drop-down selection component

<<:  Summarize the common application problems of XHTML code

>>:  Docker+nextcloud to build a personal cloud storage system

Recommend

Implementation of scheduled backup in Mysql5.7

1. Find mysqldump.exe in the MySQL installation p...

How to set a fixed IP in Linux (tested and effective)

First, open the virtual machine Open xshell5 to c...

Summary of Binlog usage of MySQL database (must read)

I won't go into details about how important b...

WML tag summary

Structure related tags ---------------------------...

PyTorch development environment installation tutorial under Windows

Anaconda Installation Anaconda is a software pack...

Deleting files with spaces in Linux (not directories)

In our daily work, we often come into contact wit...

Tips for using DIV container fixed height in IE6 and IE7

There are many differences between IE6 and IE7 in ...

Several ways to run Python programs in the Linux background

1. The first method is to use the unhup command d...

jQuery treeview tree structure application

This article example shares the application code ...

MySQL foreign key setting method example

1. Foreign key setting method 1. In MySQL, in ord...

Linux 6 steps to change the default remote port number of ssh

The default ssh remote port in Linux is 22. Somet...