码迷,mamicode.com
首页 > 其他好文 > 详细

el-select --->全选功能

时间:2020-07-03 19:17:44      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:ted   selected   exp   temp   ice   select   serve   mod   indexof   

<template>
  <el-select v-model="value" placeholder="请选择"
    reserve-keyword
    :filter-method="filterFun">
    <el-option
     :class="‘allSelected‘ ? allSelected && index === 0"
      v-for="(item, index) in options"
      @click.native=handleOptionClick(index)
      :key="item.value"
      :label="item.label"
      :value="item.value">
    </el-option>
  </el-select>
</template>

<script>
  export default {
    data() {
      return {
        value: ‘‘,
        allSelected: false,
        option:[],
        optionCopy:[]
      }
    },
    methods:{
     handleOptionClick(index){
      if(index === 0){
          this.allSelected = !this.allSelected
          this.value = this.allSelected ? this.option.slice(1).map(item => item.value) : []
       }
       this.allSelected  = (this.value.length === this.option.length -1)
      }
    },
    filterFun (val) {
     this.option = this.optionCopy.filter(item=> {
      if(item.labe.indexOf(val) !== -1){
       return item
       }
     })
      this.option.unshift({value: ‘‘,label: ‘全选‘})
    }
  }
</script>        

  

el-select --->全选功能

标签:ted   selected   exp   temp   ice   select   serve   mod   indexof   

原文地址:https://www.cnblogs.com/cs122/p/13231813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!