mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
fix user can pull to refresh when enable sort mode
This commit is contained in:
@@ -351,6 +351,11 @@ export default {
|
||||
}
|
||||
},
|
||||
reload(done) {
|
||||
if (this.sortable) {
|
||||
done();
|
||||
return;
|
||||
}
|
||||
|
||||
const self = this;
|
||||
|
||||
self.$services.getAllAccounts().then(response => {
|
||||
|
||||
@@ -202,6 +202,11 @@ export default {
|
||||
}
|
||||
},
|
||||
reload(done) {
|
||||
if (this.sortable) {
|
||||
done();
|
||||
return;
|
||||
}
|
||||
|
||||
const self = this;
|
||||
|
||||
self.$services.getAllTransactionCategories({
|
||||
|
||||
Reference in New Issue
Block a user