iviewtable中使⽤radio的单选(iview表格单选按钮功能的实
现)
第⼀步先定义个
currentid:0
然后
{
title: '选择',
key: 'chose',
width: 70,
align: 'center',
render: (h, params) => {
let id = w.idjishi;
let flag = false;
if (this.currentid === id) {
flag = true
} else {
flag = false
}
let self = this
return h('div', [
h('Radio', {
props: {
value: flag
},
on: {
'on-change': () => {
self.currentid = id
this.id_jishi = w.idjishi
}
}
})
])
}
htmlradio设置默认的按钮},

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。