【增加功能】select下拉多选 显示选中的人员

本文介绍了如何使用Vue.js开发一个带有动态选择框的组件,用户可以多选人员,并在选中后实时同步到显示区域。通过`v-model`和`@on-change`事件处理,实现实时数据绑定和清除。同时展示了删除选中人员的逻辑,以及调整了样式以确保标签对齐。
摘要由CSDN通过智能技术生成
  • 需求:显示选中的人员
//html
                             <div class="formItem">
                                <label>{{ $t("100046") }}</label>
                                <Select 
                                    @on-change="selectchange"
                                    v-model="adddata.designee"
                                    label-in-value
                                    filter-by-label
                                    :max-tag-count="0"
                                    :max-tag-placeholder="maxTagPlaceholder"
                                    multiple
                                    clearable
                                    filterable
                                    class="searchSelect"
                                >
                                    <Option
                                        style="width:240px"
                                        v-for="item in userList"
                                        :value="item.id"
                                        :key="item.id"
                                        :label="item.sectiontitle + '-' + item.name + '('     + item.work_code + ')'"
                                        ></Option
                                    >
                                </Select>
                            </div>
                            <br>
                            //显示选中的人员
                            <div class="selectPart">
                                <label>
                                    已选人员:
                                </label>
                                <div class="selectPersons">
                                    <div class="ivu-tag ivu-tag-checked"
                                        style=""
                                        v-for=" (item,index) in selectionList"
                                        :key="index">
                                    <span>{{item.label}}</span>
                                    <i @click="del(item.value)"
                                        class="ivu-icon ivu-icon-ios-close"></i>
                                    </div>
                                </div>
                            </div>


   //js
   methods: {
   //选中人员传入this.selectionList
    selectchange (value) {
            console.log(value)
            this.selectionList = value
    },
    //在显示人员页面,删除选中人员
    del(val){
        console.log(this.selectionList);
         //在传入的所有数据数组 对删除的数据进行过滤
        let {designee} = this.adddata;
        designee = designee.filter(item=>item!=val)
        this.adddata={
            ...this.adddata,
            designee,
        }
        //选中的数据数组里对删除的数据进行过滤
        this.selectionList = this.selectionList.filter(item=>{
            item.value!=val
        })
    },
  }
//解决label与span不对齐
.selectPart{
    display:flex;
    align-items:center ;
}

.selectPersons {
  width: 300px;
  height: 60px !important;
  font-size: 12px;
  display: inline-block;
  overflow-y: auto;
  /* margin-top: -20px;
  margin-bottom: -20px; */
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值