当前位置:   article > 正文

elementui el-table 多选 切换数据选中内容不清空并且自带回显默认选中_el-table 默认选中 多选

el-table 默认选中 多选

不废话别的 直接上代码
最主要的就是 row-key,reserve-selection 配合使用

<template>
    <el-table :data="tableData" ref="table" @selection-change="handleSelectionChange" :row-key="getRowKeys">
        <el-table-column type="selection" :reserve-selection="true" width="55" />
    </el-table>
</template>
<script>
export default {
    data(){
        return{
            tableData:[],
            multipleSelection:[]
        }
    },
    mounted(){
    	// 先将回显的数据请求到在请求列表数据,要不会有问题
	    this.getSelection();
        this.getData();
    },
    methods:{
        getRowKeys(row) {
            return row.id;
        },
        handleSelectionChange(val) {
            this.multipleSelection = val;
        },
        // 默认选中
        handselect(){
            this.multipleSelection.forEach(el=>{
                this.$refs.table.toggleRowSelection(el)
            })
        },
        getData(){
            axios.get("xxx").then(res=>{
                this.tableData = res.data;
            })
        }
        getSelection(){
            axios.get("xxx").then(res=>{
                this.multipleSelection = res.data;
                this.handselect()
            })
        }
    }
}

</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

这样,table切换页码时就不会清空选中的内容,并且回显时也可以默认选中

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/114323
推荐阅读
相关标签
  

闽ICP备14008679号