添加type属性 type=" selection "再通过一下代码就能获取已选择的行的数据;this.$refs.multipleTable.selection.._this.$refs.multipletable.sele">
赞
踩
转载:https://blog.csdn.net/weixin_42517975/article/details/89631128
批量选择table 的行数
代码实现:
在<el-table >添加属性 ref = "multipleTable " ,
在<el-table-colum> 添加type属性 type=" selection "
再通过一下代码就能获取已选择的行的数据;
this.$refs.multipleTable.selection
这里的 multipleTable 是上面ref 的值;
在 return 里定义数组, 用来存放选中数据
return { selectList: [] }
table 标签添加 @selection-change
方法内对数组进行赋值
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。