mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Slider: fix slider drag and value
props change at the same time can not drag success
This commit is contained in:
parent
f0e38b2720
commit
c081dde759
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user