this.$nextTick(() => {
this.appContainerConfigs.forEach(item => {
this.configsDialogTableData.forEach(row => {
if (row.guid === item.configGuid) {
this.$refs['configsDialogTable'].toggleRowSelection(row, true)
}
})
})
})
this.appContainerConfigs 是后台返回的数据
this.configsDialogTableData 是 要回显的table数据