element-ui 点击获取table的行索引

Posted wqing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element-ui 点击获取table的行索引相关的知识,希望对你有一定的参考价值。

 <el-table :data="list" v-loading.body="listLoading" element-loading-text="Loading..."  border fit
                  :row-class-name="tableRowClassName"
                 @row-click = "onRowClick"
                  highlight-current-row style="width: 100%">
                <el-table-column align="center" prop="passtime" label="Time" width="180">

 

tableRowClassName ({row, rowIndex}) {
//把每一行的索引放进row
row.index = rowIndex;
},
onRowClick (row, event, column) {
//行点击消除new标记
var index = row.index;
var deleteIndex = Array.indexOf(this.showIndexArr, index);
if (deleteIndex != -1) {
this.showIndexArr.splice(deleteIndex,1);
}
}

 

找资料找到的别人提供的方法,记录一下

以上是关于element-ui 点击获取table的行索引的主要内容,如果未能解决你的问题,请参考以下文章

查找element-ui中el-table组件的行数

element-ui:el-table合并单元格后的行高亮显示

element-ui&table 多选的筛选功能 不用点击筛选按钮,勾选就能触发搜索值

获取table当前点击的行数

element-UI中table表格的row-click事件怎么获取一行数据的id

element-UI中table表格的row-click事件怎么获取一行数据的id