Vue.js实现点击多选和单选
checked(item) {if (this.checkList.indexOf(item) > -1) {let index = this.checkList.indexOf(item)this.checkList.splice(index, 1)...
·
checked(item) {
if (this.checkList.indexOf(item) > -1) {
let index = this.checkList.indexOf(item)
this.checkList.splice(index, 1)
} else {
this.checkList.push(item)
}
},
这个只能点击单选
shousuo(index) {
console.log(this.show3)
if (this.show3 == index) {
this.show3 = null;
}
else {
this.show3 = index;
//当打开收缩框的时候,将我们的xmid传过来
this.getMyRwxx(this.form.xqList[index].XMID);
//调用这个方法的时候传入xmid和rwid
this.listAllRwxxByXmid1(this.form.xqList[index].XMID, this.form.xqList[index].RWID)
}
},
更多推荐
已为社区贡献23条内容
所有评论(0)