表格里面的数据更新后,可以通过以下方法来刷新表格
方法一 用更新后的数据,覆盖之前的数据
var newTableData=[];
for(var i=0;i<that.tableData.length;i++){
if(aId==that.selectStationId&&bId==that.selectDeviceId){
that.tableData[i].physicalid=physicalId;
}
newTableData.push(that.tableData[i]);
}
that.tableData=newTableData;
方法二 使用$nextTick
<el-table :Key=“key”></el-table>
//Data里面定义
key:0
//使用
this.$nextTick(()=>{
this.key++;
})文章来源:https://www.toymoban.com/news/detail-490227.html
文章来源地址https://www.toymoban.com/news/detail-490227.html
到了这里,关于el-table-如何刷新表格数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!