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