vue中组件传值 引用页面与组件页面绑定参数 vue省市地区街道级联选择组件

不管现实多么惨不忍睹,都要持之以恒地相信,这只是黎明前短暂的黑暗而已。不要惶恐眼前的难关迈不过去,不要担心此刻的付出没有回报,别再花时间等待天降好运。真诚做人,努力做事!你想要的,岁月都会给你。vue中组件传值 引用页面与组件页面绑定参数 vue省市地区街道级联选择组件,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

在做后台的时候需要用到地区级联选择器 然后就自己封装了一个

其中 组件页面中

export default {
  props: {		//使用value接收引用页面的绑定值
    value: [String]
  },
  watch: {
    value: {
      handler(val) {
        //val 以及 this.value 都可以获取到引用页面的绑定值
      },
      deep: true,
      immediate: true
    }
  },
}
//this.$emit("input", this.changeForm()); 这句代码是给引用页面绑定值返回内容

完整地区json文件在网盘中

链接:https://pan.quark.cn/s/0b70e60fd377
提取码:4sSe

下面是完整代码:

引用页面中

<select-address v-model="form.applicableRange"/>

main.js中注册组件

import SelectAddress from '@/components/SelectAddress'

Vue.component('SelectAddress', SelectAddress)

组件页面

<template>
  <div class="selectAddress">
    <el-form :model="form">
      <el-select v-model="form.provincial" @change="updateProvincials()" clearable
                 placeholder="请选择省份">
        <el-option v-for="provincial in provincials" :key="provincial.label" :value="provincial.label"
                   :label="provincial.label"/>
      </el-select>
      <el-select v-model="form.municipal" @change="updateMunicipals()"
                 placeholder="请选择城市">
        <el-option v-for="municipal in municipals" :key="municipal.label" :value="municipal.label"
                   :label="municipal.label"/>
      </el-select>
      <el-select v-model="form.regional" @change="updateRegionals()"
                 placeholder="请选择地区">
        <el-option v-for="regional in regionals" :key="regional.label" :value="regional.label"
                   :label="regional.label"/>
      </el-select>
      <el-select v-model="form.streets" @change="updateStreetss()"
                 placeholder="请选择街道">
        <el-option v-for="streets in streetss" :key="streets.label" :value="streets.label" :label="streets.label"/>
      </el-select>
    </el-form>
  </div>
</template>
<script>
const options = require("@/assets/images/pcas-code.json");
export default {
  props: {
    value: [String]
  },
  data() {
    return {
      form: {
        provincial: null,
        municipal: null,
        regional: null,
        streets: null,
      },
      provincials: options,
      municipals: [],
      regionals: [],
      streetss: [],
    }
  },
  watch: {
    value: {
      handler(val) {
        if (val) {
          const list = this.value.split(' ');
          if(list.length == 1){
            this.form.provincial = list[0];
            this.updateProvincials();
          }else if(list.length == 2){
            this.form.provincial = list[0];
            this.updateProvincials();
            this.form.municipal = list[1];
            this.updateMunicipals();
          }else if(list.length == 3){
            this.form.provincial = list[0];
            this.updateProvincials();
            this.form.municipal = list[1];
            this.updateMunicipals();
            this.form.regional = list[2];
            this.updateRegionals();
          }
        } else {
          this.reset();
          return [];
        }
      },
      deep: true,
      immediate: true
    }
  },
  mounted() {
  },
  created() {
  },
  computed: {},
  methods: {
    reset() {
      this.form = {
        provincial: null,
        municipal: null,
        regional: null,
        streets: null
      }
    },
    updateProvincials() {
      this.form.municipal = "";
      this.form.regional = "";
      this.form.streets = "";
      this.municipals = [];
      this.regionals = [];
      this.streetss = [];
      this.$emit("input", this.changeForm());
      if(this.form.provincial){
        this.municipals = this.provincials.find(provincial => provincial.label == this.form.provincial).children;
      }
    },
    updateMunicipals() {
      this.form.regional = "";
      this.form.streets = "";
      this.regionals = [];
      this.streetss = [];
      this.$emit("input", this.changeForm());
      this.regionals = this.municipals.find(municipal => municipal.label == this.form.municipal).children;
    },
    updateRegionals() {
      this.form.streets = "";
      this.streetss = [];
      this.$emit("input", this.changeForm());
      this.streetss = this.regionals.find(regional => regional.label == this.form.regional).children;
    },
    updateStreetss() {
      this.$emit("input", this.changeForm());
    },
    changeForm(){
      let applicableRange = "";
      if(this.form.provincial){
        applicableRange = this.form.provincial
      }
      if(this.form.provincial && this.form.municipal){
        applicableRange = this.form.provincial + " " + this.form.municipal
      }
      if(this.form.provincial && this.form.municipal && this.form.regional){
        applicableRange = this.form.provincial + " " + this.form.municipal + " " + this.form.regional
      }
      if(this.form.provincial && this.form.municipal && this.form.regional && this.form.streets){
        applicableRange = this.form.provincial + " " + this.form.municipal + " " + this.form.regional + " " + this.form.streets
      }
      return applicableRange;
    }
  },
}
</script>

<style scoped lang="scss">
.el-select {
  width: 18%;
  margin-left: 1%;
}
</style>

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/188045.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!