1. vue-region-slider

vue-region-slider

简介

有些项目涉及到价格选择,需要用到区间滑动,vue-region-slider基于vue开发

###使用

// main.js
import sRegionSlider from 'vue-region-slider';
import sRegionSlider from 'vue-region-slider/vue-region-slider/vue-region-slider.css';
Vue.use(sRegionSlider)

// template.vue
<vue-region-slider :fillValue="1000" :minValue="300" :maxValue="700" :step="3" @up="up" @down="down" @move="move"/>

方法说明

属性

类型 说明 默认
fillValue number 最大范围 1000
maxValue number 滑块最大默认值 1000
minValue number 滑块最小默认值 0
step number 滑动后显示的数值只能是step倍数,例如:金额只能是10的倍数的时候,step可以设置为10 50
事件
说明 event
-- -- --
down 触发touchstart方法 返回了原有的event信息, 并添加了custom对象
move 触发touchmove方法 返回了原有的event信息, 并添加了custom对象
up 触发touchend方法 返回了原有的event信息, 并添加了custom对象

e.custom 说明

说明 event
type 当前触发的事件中是哪个滑块 ,('min'/'max')
minValue 左边滑块的值
maxValue 右边滑块的值
curValue 互动过程中的值, 注:此项只有move方法中才会有值,down和up不存在curValue

使用案例

<div style="margin-top:200rpx;padding:100rpx;">
	<vue-region-slider :minValue="300" :maxValue="700" :step="40" @up="up"  @down="down"  @move="move" />
</div>

	export default {
		components: {sRegionSlider},
		methods: {
			down(e){
				// e中包含了原有的e信息, 并添加了custom对象
				const type = e.custom.type;
				const minValue = e.custom.minValue;
				const maxValue = e.custom.maxValue ;			
			},
			up(e){
				// e中包含了原有的e信息, 并添加了custom对象
				const type = e.custom.type;
				const minValue = e.custom.minValue;
				const maxValue = e.custom.maxValue ;		
				const curValue  = e.custom.curValue  ;	
			},
			move(e){
				// e中包含了原有的e信息, 并添加了custom对象
				const type = e.custom.type;
				const minValue = e.custom.minValue;
				const maxValue = e.custom.maxValue ;		
			},
		}
	}

上面代码运行到各端的效果图

在这里插入图片描述