[bugfix] Slider: fix slider drag and value props change at the same time can not drag success

This commit is contained in:
张敏 2019-04-24 01:52:34 +08:00 committed by rex
parent f0e38b2720
commit c081dde759

View File

@ -55,13 +55,14 @@ VantComponent({
this.touchMove(event); this.touchMove(event);
this.getRect('.van-slider').then((rect: wx.BoundingClientRectCallbackResult) => { this.getRect('.van-slider').then((rect: wx.BoundingClientRectCallbackResult) => {
const diff = this.deltaX / rect.width * 100; 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() { onTouchEnd() {
if (this.data.disabled) return; if (this.data.disabled) return;
this.updateValue(this.data.value, true); this.updateValue(this.newValue, true);
}, },
onClick(event: Weapp.TouchEvent) { onClick(event: Weapp.TouchEvent) {