mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(slider): fix slide step with max been set
This commit is contained in:
parent
a5e2c120fd
commit
d1043eeb03
@ -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);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user