mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-21 02:04:26 +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) {
|
reload(done) {
|
||||||
|
if (this.sortable) {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const self = this;
|
const self = this;
|
||||||
|
|
||||||
self.$services.getAllAccounts().then(response => {
|
self.$services.getAllAccounts().then(response => {
|
||||||
|
|||||||
@@ -202,6 +202,11 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
reload(done) {
|
reload(done) {
|
||||||
|
if (this.sortable) {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const self = this;
|
const self = this;
|
||||||
|
|
||||||
self.$services.getAllTransactionCategories({
|
self.$services.getAllTransactionCategories({
|
||||||
|
|||||||
Reference in New Issue
Block a user