mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2026-01-07 00:36:08 +08:00
Fix table component infinite scroll
This commit is contained in:
parent
d4b68407ef
commit
fe61d6e169
1 changed files with 5 additions and 1 deletions
|
|
@ -252,7 +252,11 @@ export default {
|
|||
watch: {
|
||||
reloadingTable() {
|
||||
if (this.reloadingTable) {
|
||||
this.loadData();
|
||||
if (this.scrollMode === 'pages') {
|
||||
this.loadData();
|
||||
} else {
|
||||
this.reloadTable();
|
||||
}
|
||||
}
|
||||
},
|
||||
currentViewRender() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue