element 下拉多选,有全选

{
          type: 'select',
          size: 'mini',
          placeholder: '请选择小区',
          clearable: true,
          filterable: true,
          multiple:true,
          label: '小区',
          value: 'placeId',
          disabled: () => this.type === 'edit' || this.isPlaceId,
          options: () => this.communityList,
          change:($event)=> this.changeSelect($event),
          removeTag:($event)=> this.removeTag($event),
          prop:{
            value:'id',
            label:'communityName'
          }
        },
 // 选择小区
    changeSelect(event){
      // console.log('val',event.length)
      if(event.includes('ALL')){ // 选中数据是否有全选id
        
        if(this.selectedArr.length<=0){  
          // 记录全选id没有数据,此为全选
          this.communityList.forEach(ele => {
            this.selectedArr.push(ele.id)
          })
          this.form.placeId = [...this.selectedArr]
        } else if(event.length<this.selectedArr.length){ 
          //  // 记录全选id有数据,选中数据少于全选,为非全选
          this.selectedArr=[]
          this.form.placeId = this.form.placeId.filter(val => val !== 'ALL')
        }
      }else if(this.selectedArr.length>0){
        // 选中数据没有全选id,记录全选id有数据,为清空全选
          this.selectedArr=[]
          this.form.placeId=[]
      }else if(event.length === this.communityList.length-1){
        // ,记录全选id没有数据,但数据已被全部全中 为全选
        this.communityList.forEach(ele => {
            this.selectedArr.push(ele.id)
          })
        this.form.placeId = [...this.selectedArr]
      }
    },
    // 删除选中小区触发
    removeTag(event){
      console.log('removeTag',event)
      if(event==='ALL'){
        this.form.placeId=[]
      }
    },

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值