码迷,mamicode.com
首页 > 其他好文 > 详细

ElementUI el-table 表格 行选择框改为单选

时间:2019-11-26 13:21:02      阅读:468      评论:0      收藏:0      [点我收藏+]

标签:head   点击   cell   idt   html   表格   on()   ogg   this   

首先,表格加一列

<el-table-column type="selection" width="55"></el-table-column>

然后,隐藏掉标头的全选全不选

thead .el-table-column--selection .cell{
    display: none;
}

给表格加一个 ref,例如:ref="Table" (加在el-table的属性里)
给表格加一个事件 @selection-change="chooseInstance"

chooseInstance (val) {
    if (val.length > 1) {
        this.$refs.Table.clearSelection()
        this.$refs.Table.toggleRowSelection(val.pop())
    } else {
    }
},

如果要实现点击表格的行就单选,再添一个 @current-change 事件:
在事件中:

currentChange(currentRow, oldCurrentRow) {
    this.$refs.Table.toggleRowSelection(currentRow)
}

ElementUI el-table 表格 行选择框改为单选

标签:head   点击   cell   idt   html   表格   on()   ogg   this   

原文地址:https://www.cnblogs.com/wbyixx/p/11934719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!