fix(slider): fix slide step with max been set

This commit is contained in:
zhongnan 2020-12-16 17:56:08 +08:00
parent a5e2c120fd
commit d1043eeb03

View File

@ -62,7 +62,7 @@ VantComponent({
this.dragStatus = 'draging';
getRect.call(this, '.van-slider').then((rect) => {
const diff = (this.deltaX / rect.width) * 100;
const diff = (this.deltaX / rect.width) * this.data.max;
this.newValue = this.startValue + diff;
this.updateValue(this.newValue, false, true);
});