vue 循环多个标签,点击标签变色,再点击取消,可以同时点击多个

vue  循环多个标签,点击标签变色,再点击取消,可以同时点击多个

效果如下:

1.

<div class="relFacilityTitcon">

                            <i v-for="(item,index) in facilityList" :key="index" @click="changeSpan(index);" :class="{'bgcolor':spanIndex.indexOf(index)>-1}" >{{item}}</i>
                        </div>

2.

.padding .relWarp .relFacility .relFacilityTitcon {

        /* border: 1px solid red; */
        /* line-height: 20px; */
        padding: 0 .24rem;
        font-size :10px;
    }

    .padding .relWarp .relFacility .relFacilityTitcon i {
        
        /* height:20px; */
        display: inline-block;
        /* margin: 0 5px; */
        height: 20px;
        line-height: 20px;
        padding: 0 .16rem;
        /* width: auto; */
        font-size: 10px;
        color: #97979f;
        border-radius: 5px;
        border: 1px solid #97979f;
        margin-right: 10px;
        margin-top: 10px;
        font-style: normal;

        /* padding:1px 7px; */
        /* display: inline-block; */
    }
    .padding .relWarp .relFacility .relFacilityTitcon .bgcolor {
        border: 1px solid orange;
        color: orange;
    }

    .padding .relWarp .relFacility .relFacilityTitcon i:last-child {
        margin-right: 0;
    }

3.

  methods: {
           
            changeSpan(index){
                let arrIndex = this.spanIndex.indexOf(index);
                // console.log(arrIndex);
                
                if(arrIndex>-1){
                    this.spanIndex.splice(arrIndex,1);
                }else{
                    this.spanIndex.push(index);
                }
            },

 

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值