diff --git a/src/packages/__VUE/range/index.taro.vue b/src/packages/__VUE/range/index.taro.vue index 071c63b720..38a94b5750 100644 --- a/src/packages/__VUE/range/index.taro.vue +++ b/src/packages/__VUE/range/index.taro.vue @@ -26,7 +26,7 @@ :aria-valuenow="curValue(index)" :aria-valuemax="+max" aria-orientation="horizontal" - @touchstart.stop.prevent=" + @touchstart=" (e) => { if (typeof index === 'number') { // 实时更新当前拖动的按钮索引 @@ -35,9 +35,9 @@ onTouchStart(e); } " - @touchmove.stop.prevent="onTouchMove" - @touchend.stop.prevent="onTouchEnd" - @touchcancel.stop.prevent="onTouchEnd" + @touchmove="onTouchMove" + @touchend="onTouchEnd" + @touchcancel="onTouchEnd" @click="(e) => e.stopPropagation()" > @@ -56,14 +56,14 @@ :aria-valuemax="+max" aria-orientation="horizontal" :catch-move="true" - @touchstart.stop.prevent=" + @touchstart=" (e) => { onTouchStart(e); } " - @touchmove.stop.prevent="onTouchMove" - @touchend.stop.prevent="onTouchEnd" - @touchcancel.stop.prevent="onTouchEnd" + @touchmove="onTouchMove" + @touchend="onTouchEnd" + @touchcancel="onTouchEnd" @click="(e) => e.stopPropagation()" > @@ -78,12 +78,13 @@