mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
Update index.js
自定义等分时,滑动需按照自定义等分的距离触发步进
This commit is contained in:
parent
6b1f510daa
commit
a5e2c120fd
@ -57,6 +57,10 @@ component_1.VantComponent({
|
||||
this.dragStatus = 'draging';
|
||||
utils_1.getRect.call(this, '.van-slider').then(function (rect) {
|
||||
var diff = (_this.deltaX / rect.width) * 100;
|
||||
// 当设置最大值时(及自定义等分),滑动触发步进需按照等分后的滑动距离触发
|
||||
if (this.data.max) {
|
||||
diff = diff * this.data.max / 100
|
||||
}
|
||||
_this.newValue = _this.startValue + diff;
|
||||
_this.updateValue(_this.newValue, false, true);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user