element表格复选框回显,取消选择

发布时间:2024年01月19日
this.dataList = response.rows
                    this.tableColumnList=response.tableColumnList
                    this.queryParams.total=response.total
                
                    if (this.pointitle=='修改') {
                        console.log("xxxx")
                        let arr=this.dataList
                        let arr1=this.tags
                        this.$nextTick(()=>{
                        arr.forEach((row)=>{
                            arr1.forEach((row1)=>{
                                if (row1.id==row.id) {
                                    this.$refs.dataList.toggleRowSelection(row,true)
                                }
                                })
                            })
                        })
                    } else {
                    //    取消选择
                        this.$refs.dataList.clearSelection()
                    }
文章来源:https://blog.csdn.net/weixin_38999134/article/details/135704219
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。