el-select 不能重复选择

文章介绍了如何在Vue项目中使用ElementUI的el-select组件,防止用户重复选择,并在删除选项后允许重新选择。通过v-model绑定和自定义方法控制选项的disable状态。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

el-select 不能重复选择,注意:删除后可以再次重新被选择
在这里插入图片描述

				<el-form-item>
                    <el-select v-model="attribute.attributeSelect" @change="changeSelect()" placeholder="请选择属性分组" clearable>
	                    <el-option
	                        v-for="item in attributeList"
	                        :key="item.value"
	                        :label="item.label"
	                        :value="item.value"
	                        :disabled="item.disabled"
	                    ></el-option>
                  </el-select>
                </el-form-item>
                <el-button class="el-button" type="text" @click="delAttribute({attribute: attribute, index: attIndex})">
                  <svg-icon
                      class="svg-icon"
                      name="shanchu"
                      :width="16"
                      :height="16"
                      type="primary"
                  />
                </el-button>
// 数据定义
data() {
    return {
      attributeList: [
        {
          label: 'qwe',
          value: 'qwe'
        },{
          label: 'eee',
          value: 'eee'
        },{
          label: 'ddd',
          value: 'D'
        },
      ],
      // 属性分组
      attributeGroupForm: [
        //   单一
        {
          attributeSelect: '',
        }
      ],
    }
  },
	changeSelect() {
      this.setDisable()
    },
    // 选项处理
    setDisable(){
      this.attributeList.forEach(item=> {
        let isdisable = this.attributeGroupForm.findIndex((val) => val.attributeSelect ==item.value)
        if(isdisable!=-1){
          item.disabled = true
        }else {
          item.disabled = false
        }
      })
    },
    // 添加 分组
	attributeGroupIndex() {
        this.attributeGroupForm.push({
          attributeSelect: '',
        })
    },
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值