vue element UI el-table 给表格添加复选框,并得到所选值
Posted foreverfendou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue element UI el-table 给表格添加复选框,并得到所选值相关的知识,希望对你有一定的参考价值。
<el-table @selection-change="changeCheckBoxValue" v-bind:data="this.requireData" v-loading="this.tableLoading" border style="width:100%" > <el-table-column min-width=‘140‘ type="selection"></el-table-column> <el-table-column prop="RequirementNO" v-bind:label="$t(‘rq_lst_require_no‘)" min-width=‘150‘> </el-table-column> </el-table>
<script> methods: { changeCheckBoxValue(val) { $.each(val, function (i, v) { console.log(i, v.RequirementNO);//function里面可以接受两个参数,i是索引,v是每次循环的具体元素。 }) }, } </script>
指定 type="selection" 就可以了
@selection-change="changeCheckBoxValue" 此事件可监听选中的所有值
以上是关于vue element UI el-table 给表格添加复选框,并得到所选值的主要内容,如果未能解决你的问题,请参考以下文章
vue2.5 + element UI el-table 导出Excel
Vue.js - element-ui el-table v-for 丢失最后一项
Vue Element UI el-table 样式属性重叠发生错位
如何在表格中添加图片(使用el-table、el-table-column),即在Vue.js中使用ui-element?