当前位置:   article > 正文

web前端之element级联选择器的那些事、获取label的值、getCheckedNodes、cascader、ref_级联选择器获取选中的label值

级联选择器获取选中的label值


动态加载时获取value和label的值

前言

1、使用ref的getCheckedNodes方法获取label的值,change事件只传递value值;
2、回显自动处理,无需手动干预,设置好接口即可。


html

<el-cascader ref="refCascader" v-model="form.addressList" clearable :props="props" @change="changeCascader"></el-cascader>
  • 1

JavaScript
data

data() {
  return {
    form: {
      addressList: null
    },
    props: {
      // 设置为动态加载模式
      lazy: true,
      // 配置value字段
      value: 'id',
      // 配置label字段
      label: 'name',
      lazyLoad(node, resolve) {
        const { level, data: { id = '' } } = node;
        let mapList = (list) => list.map(item => {
          // 设置层级(表示到了第三级便不再显示展开图标,点击也不再有加载动画)
          item.leaf = level >= 2;

          return item;
        });

        getAddrTree({ parentId: id }).then(re => resolve(mapList(re.response)));
      }
    }
  }
}
  • 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

methods

changeCascader(event) {
  // 不明智的数据存储方式
  // let nodes = this.$refs.refCascader.getCheckedNodes()[0];
  // let [provinces, city, county] = nodes.pathLabels || [];
  // let [provincesId, cityId, countyId] = event || [];

  // this.form.provincesId = provincesId || '';
  // this.form.cityId = cityId || '';
  // this.form.countyId = countyId || '';
  // this.form.provinces = provinces || '';
  // this.form.city = city || '';
  // this.form.county = county || '';
  
  // 通用的数据存储方式
  let nodes = this.$refs.refCascader.getCheckedNodes()[0];
  this.form.ids = event.toString();
  this.form.label = nodes.pathLabels.toString();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/565710
推荐阅读
相关标签
  

闽ICP备14008679号