标签:http change hand 解决方法 情况下 image sel 技术 更新
跨页多选翻页保存问题折磨了我一天,终于找到了合适的解决方法分享一下。
项目中使用Element-UI:
使用官方文档中提供的row-key属性和reserve-selection属性搭配使用
在使用 reserve-selection 功能的情况下,该属性必填。
<el-table ref="multipleTable" :data="reportList" @selection-change="handleSelectionChange" row-key="bridgecode">
<el-table-column type="selection" :reserve-selection="true"></el-table-column>
</el-table>
<script>
method:{
handleSelectionChange(val) {
//这个val是所有已选中的json的数组
this.multipleSelection = val;
},
}
</script>
标签:http change hand 解决方法 情况下 image sel 技术 更新
原文地址:https://www.cnblogs.com/lzb1234/p/11811277.html