el-table用type="selection"单选,实现相同name可以多选否则单选。JS代码如下:
selectionLineChangeHandle(selection, val) { let flag = 0; if (selection.length > 1) { for (let i = 0; i < selection.length; i++) { if (selection[i].name != val.name) { flag = 1; } } if (flag == 1) { this.$refs.table.clearSelection(); this.$nextTick(() => { this.$refs.table.toggleRowSelection(selection.pop()); }); } } }
el-table利用:row-style="rowClass"设置指定行变色
el-table表格显示selection多选时对某些复选框设置禁止选中
el-table表格实现多选功能(全选/指定选中/取消选中)
上面是“el-table实现相同name可以多选否则单选”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2050.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!