分类:
当前位置:   article > 正文

vue 获取el-cascader选中的label值_获取el-cascader选中的值

获取el-cascader选中的值

通常 el-cascader 绑定的model值是选中的id,有时候需要获取选中的label值,可以用以下的方法:

<template>
  <div class="container">
     <span>分类:</span>
     <el-cascader ref="cascaderMallCatergory" v-model="mallCatergoryCode" @change="handleMallCatergoryChange" :options="mallCategoryOptions" :props="props"></el-cascader>
  </div>
</template>

<script>

export default {
  name: "coupon",
  components: {
  },
  data () {
    return {      
      mallCatergoryCode: [],
      mallCategoryOptions: [
        {
          "id": "1",
          "name": "水果",
          "level": "1",
          "pid": "0",
          "status": "1",
          "subCatalogResps": [
            {
              "id": "4",
              "name": "苹果",
              "status": "1"
            }, {
              "id": "8",
              "name": "香蕉",
              "status": "1"
            }, {
              "id": "9",
              "name": "梨",
              "status": "1"
            }
          ]
        }, {
          "id": "2",
          "name": "食品",
          "level": "1",
          "pid": "0",
          "status": "1",
          "subCatalogResps": [
            {
              "id": "5",
              "name": "面条",
              "status": "1"
            }, {
              "id": "6",
              "name": "大米",
              "status": "1"
            }
          ]
        }
      ],
      // 自定义 props
      props: { label: 'name', value: 'id', children: 'subCatalogResps' }
    }
  },
  props: {
  },
  mounted () {
  },
  methods: {
    handleMallCatergoryChange () {
      if (this.mallCatergoryCode.length != 0) {       
        let arr = this.$refs['cascaderMallCatergory'].getCheckedNodes()[0].pathLabels
        console.log('mallCatergoryCode', this.mallCatergoryCode)
        console.log('arr', arr)   
      }
    }
  }
}
</script>

<style lang="less" scoped>
.container {
}
</style>
  • 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

给el-cascader设置ref:cascaderMallCatergory,然后通过this.$refs['cascaderMallCatergory'].getCheckedNodes()[0].pathLabels 来获取选中的label值。

选中一个分类之后,监听change事件:
在这里插入图片描述
打印结果如下:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/133980
推荐阅读