使用elementUI制作三级级联城市选择器

Posted e-cat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用elementUI制作三级级联城市选择器相关的知识,希望对你有一定的参考价值。

1.效果预览:

技术分享图片

2.引入资源文件

1.vue资源

<script src="https://unpkg.com/vue/dist/vue.js"></script>

2.elementUI资源

<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<script src="https://unpkg.com/element-ui/lib/index.js"></script>

3.city-data.js资源

3.业务代码

1.html代码

<div id="app">
  <el-cascader :options="CityInfo" v-model="form.selectedOptions" :change-on-select="true" :clearable="true" :filterable="true" @change="handleChange">
  </el-cascader>
  <span>所选地区:{{form.city | myAddressCity}}{{form.area | myAddressArea}}{{form.minarea | myAddressMinarea}}</span>
</div>

2.js代码

 1     const app = new Vue({
 2       el: ‘#app‘,
 3       data: {
 4         CityInfo: CityInfo,
 5         form: {
 6           city: ‘‘,
 7           area: ‘‘,
 8           minarea: ‘‘,
 9           selectedOptions: [],//地区筛选数组
10         },
11       },
12       created() {
13       },
14       methods: {
15         handleChange(value) {
16           this.form.city = this.form.selectedOptions[0];
17           this.form.area = this.form.selectedOptions[1]
18           this.form.minarea = this.form.selectedOptions[2]
19         },
20    },
20 filters: { 21 myAddressCity: function (value) { 22 for (y in this.CityInfo) { 23 if (this.CityInfo[y].value == value) { 24 return value = this.CityInfo[y].label 25 } 26 } 27 }, 28 myAddressArea: function (value) { 29 for (y in this.CityInfo) { 30 for (z in this.CityInfo[y].children) { 31 if (this.CityInfo[y].children[z].value == value && value != undefined) { 32 return value = this.CityInfo[y].children[z].label; 33 } 34 } 35 } 36 }, 37 myAddressMinarea: function (value) { 38 for (y in this.CityInfo) { 39 for (z in this.CityInfo[y].children) { 40 for (i in this.CityInfo[y].children[z].children) { 41 if (this.CityInfo[y].children[z].children[i].value == value && value != undefined) { 42 return value = this.CityInfo[y].children[z].children[i].label 43 } 44 } 45 } 46 } 47 }, 48 }, 49 })

制作完成,其他更多用法参考官网:http://element-cn.eleme.io/#/zh-CN/component/cascader

 

后记1:在<el-cascader>标签中添加expand-trigger="hover"即可实现hover触发

后记2:在city-data.js中删除第三级地区,就可以实现省市二级联动.

 


以上是关于使用elementUI制作三级级联城市选择器的主要内容,如果未能解决你的问题,请参考以下文章

Element-ui(Cascader 级联选择器)实现三级联动

elementui级联选择器怎么穿参给后端

elementUI的级联选择器el-cascader

elementUI实现三级级联实现,不可以选中问题

elementUI实现三级级联实现,不可以选中问题

elementui级联选择器一级选择框不显示