element ui el-table获取行列
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
element ui 里table 获取表格行列和内容
下边的内容可以解决很多问题,比如:需要点击一行里其中一个跳转传值(这是我遇到的,哈哈)但是呢,在一个方法里获取到值,在另一个方法里那个值就不能用来,会报错,尝试了很多,就想到了这个方法。
获取点击的列,判断是不是它需要跳转,然后就可以传参了。
<el-table height="700" style="width: 100%;"
:data="tableData"
:cell-class-name="tableCellClassName"
@cell-click="cellClick">
</el-table>
tableCellClassName({row, column, rowIndex, columnIndex}){//注意这里是解构
//利用单元格的 className 的回调方法,给行列索引赋值
row.index=rowIndex;
column.index=columnIndex;
},
cellClick(row, column, cell, event) {
console.log("行的内容:",row);
console.log("列:",column.index);
if(column.index==7){
console.log("这是我点的第七列");
this.$router.push({path:"/index",query: {index.index} })
}
}
我借鉴了这个,大家也可以看看,具体内容差不多
https://blog.csdn.net/KangTongShun/article/details/106003678
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)