From 3037f1762fe0e103a8e4511bfef0e1a0bddf7877 Mon Sep 17 00:00:00 2001 From: tank0317 Date: Mon, 12 Aug 2019 17:58:27 +0800 Subject: [PATCH] fix(scroll): pulldown can not reset position --- src/components/scroll/scroll.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/scroll/scroll.vue b/src/components/scroll/scroll.vue index f6a881e0..28dcd445 100644 --- a/src/components/scroll/scroll.vue +++ b/src/components/scroll/scroll.vue @@ -315,8 +315,8 @@ this.isPullingDown = false this.isPullDownUpdating = true await this._waitFinishPullDown() - await this._waitResetPullDown(dirty) this.isPullDownUpdating = false + await this._waitResetPullDown(dirty) } else if (this.pullUpLoad && this.isPullUpLoad) { this.isPullUpLoad = false this.scroll.finishPullUp() -- GitLab