返回顶部
首页 > 资讯 > 前端开发 > JavaScript >vue+element多个相同的select不允许重复选择问题
  • 726
分享到

vue+element多个相同的select不允许重复选择问题

2024-04-02 19:04:59 726人浏览 薄情痞子
摘要

目录element多个相同的select不允许重复选择动态循环出的多个select 不能重复选择相同的数据先看效果图element多个相同的select不允许重复选择 <tem

element多个相同的select不允许重复选择

<template>
  <div class="com_searchAndpageBoxPadding">
    <div>
      <el-select v-model="value1" placeholder="请选择">
        <el-option v-for="item in haha" :key="item.id" :label="item.label" :value="item.id" :disabled="disabledChoose(item)">
        </el-option>
      </el-select>
      <el-select v-model="value2" placeholder="请选择">
        <el-option v-for="item in haha" :key="item.id" :label="item.label" :value="item.id" :disabled="disabledChoose(item)">
        </el-option>
      </el-select>
      <el-select v-model="value3" placeholder="请选择">
        <el-option v-for="item in haha" :key="item.id" :label="item.label" :value="item.id" :disabled="disabledChoose(item)">
        </el-option>
      </el-select>
    </div>
  </div>
</template>
<script>
export default {
  data() {
    return {
      value1: '',
      value2: '',
      value3: '',
      haha: [{
        id: 1,
        value: '选项1',
        label: '黄金糕'
      }, {
        id: 2,
        value: '选项2',
        label: '双皮奶',
        disabled: true
      }, {
        id: 3,
        value: '选项3',
        label: '蚵仔煎'
      }, {
        id: 4,
        value: '选项4',
        label: '龙须面'
      }, {
        id: 5,
        value: '选项5',
        label: '北京烤鸭'
      }],
    }
  },
  computed: {
    disabledChoose(item) {
      return function (item) {
        let findItemIndex = [this.value1, this.value2, this.value3].findIndex(item2 => item2 == item.id);
        console.log('findItemIndex', findItemIndex)
        let newArr = [this.value1, this.value2, this.value3].splice(findItemIndex, 1);
        console.log('newArr', newArr)
        return newArr.includes(item.id);
      }
    }
  },
  methods: {
    showToggle(item) {
      item.isSubShow = !item.isSubShow //需要展开内容,显示与隐藏之间切换
    },
    toDetail(item) {
      this.$router.push('/helpDetails/' + item)
    },
  },
  mounted() {
  }
}
</script>
<style lang="sCSS" src="@/assets/css/card.scss"></style>

动态循环出的多个select 不能重复选择相同的数据

先看效果图

代码如下:

<template>
  <div class="program" v-for="(parItem,index) in parArr" :key="parItem.guid">
    <Select v-model="parItem.id"  @on-change="onChangeProgram">
      <Option v-for="(subItem,idx) in programList" :key="subItem.id" :data-index='idx'
        v-show="parItem.id == subItem.id || !selectIdsArr.includes(subItem.id)"
        :value="subItem.id> {{subItem.name}}</Option>
    </Select>
  </div>
</template>
<script>
export default {
  data() {
    return {
      parArr:[{guid:'DDDdd',id:null,},{guid:'eeeee',id:null,},{guid:'ffff',id:null,}],
      selectIdsArr:[],
      programList:[{
        "id":1,
        "name":"选项1"
      },{
        "id":2,
        "name":"选项2"
      },{
        "id":3,
        "name":"选项3"
      }],
    }
  },
  methods: {
    onChangeProgram() {
      this.selectIdsArr = [];
      for (const item of this.parArr) {
        if (item.id) {
          this.selectIdsArr.push(item.id);
        }
      }
    },
  },
}
</script>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: vue+element多个相同的select不允许重复选择问题

本文链接: https://lsjlt.com/news/153776.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作