@@ -19,6 +19,7 @@
</vxe-toolbar>
<div style="height: calc(100% - 50px)">
<vxe-table
+ :key="tableKey"
border="inner"
auto-resize
resizable
@@ -73,6 +74,7 @@
pageSize: 10,
orders: []
},
+ tableKey: '',
loading: false
}
@@ -125,6 +127,7 @@
}).then(({data}) => {
this.dataList = data.records
this.tablePage.total = data.total
+ this.tableKey = Math.random()
this.loading = false
})