iview 将table的selection多选变单选方法
{title:'#',type:'checkBox',align: 'center',width:80,render:(h,params)=>{return h('div',[h('Checkbox',{props:{value:params.row.checkBox},.
·
{
title:'#',
type:'checkBox',
align: 'center',
width:80,
render:(h,params)=>{
return h('div',[
h('Checkbox',{
props:{
value:params.row.checkBox
},
on:{
'on-change':(e)=>{
console.log(e)
this.data2.forEach((items)=>{
this.$set(items,'checkBox',false)
});
this.data2[params.index].checkBox = e;
}
}
})
])
}
},
更多推荐
已为社区贡献1条内容
所有评论(0)