Update index.js

自定义等分时,滑动需按照自定义等分的距离触发步进
This commit is contained in:
frank 2020-12-15 16:15:24 +08:00 committed by GitHub
parent 6b1f510daa
commit a5e2c120fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
});