uni-app中view实现多选,点击选中并改变样式,再点击取消

效果图:

uni-app中view实现多选,点击选中并改变样式,再点击取消_第1张图片

template:  

{{value.name}}

  js:

export default {
    data(){
        return{
            rSelect:[]
        }
    },
    methods:{
        tapInfo(e) {
	        if (this.rSelect.indexOf(e) == -1) {
	    	    console.log(e)//打印下标
		        this.rSelect.push(e);//选中添加到数组里
	        } else {
		        this.rSelect.splice(this.rSelect.indexOf(e), 1); //取消
		    }
        }
    }
}

css(选中样式):

.cur {
		color: white;
		border: 1px solid #e5e5e5;
		background-color: #ff5d00;
}

 

你可能感兴趣的:(前端)