diff --git a/packages/slider/index.ts b/packages/slider/index.ts index ec926538..742a1ee1 100644 --- a/packages/slider/index.ts +++ b/packages/slider/index.ts @@ -55,7 +55,7 @@ VantComponent({ this.touchMove(event); this.getRect('.van-slider').then(rect => { const diff = this.deltaX / rect.width * 100; - this.updateValue(this.startValue + diff); + this.updateValue(this.startValue + diff, false, true); }); }, @@ -73,7 +73,7 @@ VantComponent({ }); }, - updateValue(value, end) { + updateValue(value, end, drag) { value = this.format(value); this.set({ @@ -81,8 +81,10 @@ VantComponent({ barStyle: `width: ${value}%; height: ${this.data.barHeight};` }); - this.$emit('drag', { value }); - + if (drag) { + this.$emit('drag', { value }); + } + if (end) { this.$emit('change', value); }