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

This commit is contained in:
rex 2020-12-16 17:58:04 +08:00 committed by GitHub
commit 555f2e9561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

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

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