From c081dde7594cf3a50c07eb11fcf980cd0b54d537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=95=8F?= Date: Wed, 24 Apr 2019 01:52:34 +0800 Subject: [PATCH] [bugfix] Slider: fix slider drag and `value` props change at the same time can not drag success --- packages/slider/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/slider/index.ts b/packages/slider/index.ts index f0c04cb1..ac8babaa 100644 --- a/packages/slider/index.ts +++ b/packages/slider/index.ts @@ -55,13 +55,14 @@ VantComponent({ this.touchMove(event); this.getRect('.van-slider').then((rect: wx.BoundingClientRectCallbackResult) => { const diff = this.deltaX / rect.width * 100; - this.updateValue(this.startValue + diff, false, true); + this.newValue = this.startValue + diff; + this.updateValue(this.newValue, false, true); }); }, onTouchEnd() { if (this.data.disabled) return; - this.updateValue(this.data.value, true); + this.updateValue(this.newValue, true); }, onClick(event: Weapp.TouchEvent) {