mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
2855aa91d9
commit
cfbf07bb8a
@ -13,25 +13,29 @@ VantComponent({
|
|||||||
inactiveColor: String,
|
inactiveColor: String,
|
||||||
max: {
|
max: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 100,
|
value: 100
|
||||||
},
|
},
|
||||||
min: {
|
min: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0
|
||||||
},
|
},
|
||||||
step: {
|
step: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 1,
|
value: 1
|
||||||
},
|
},
|
||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer: 'updateValue',
|
observer(val) {
|
||||||
|
if (val !== this.value) {
|
||||||
|
this.updateValue(val);
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
barHeight: {
|
barHeight: {
|
||||||
type: null,
|
type: null,
|
||||||
value: '2px',
|
value: 2
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
@ -43,7 +47,7 @@ VantComponent({
|
|||||||
if (this.data.disabled) return;
|
if (this.data.disabled) return;
|
||||||
|
|
||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
this.startValue = this.format(this.data.value);
|
this.startValue = this.format(this.value);
|
||||||
this.dragStatus = 'start';
|
this.dragStatus = 'start';
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -94,12 +98,13 @@ VantComponent({
|
|||||||
const { min } = this.data;
|
const { min } = this.data;
|
||||||
const width = `${((value - min) * 100) / this.getRange()}%`;
|
const width = `${((value - min) * 100) / this.getRange()}%`;
|
||||||
|
|
||||||
|
this.value = value;
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
value,
|
|
||||||
barStyle: `
|
barStyle: `
|
||||||
width: ${width};
|
width: ${width};
|
||||||
${drag ? 'transition: none;' : ''}
|
${drag ? 'transition: none;' : ''}
|
||||||
`,
|
`
|
||||||
});
|
});
|
||||||
|
|
||||||
if (drag) {
|
if (drag) {
|
||||||
@ -123,6 +128,6 @@ VantComponent({
|
|||||||
format(value: number) {
|
format(value: number) {
|
||||||
const { max, min, step } = this.data;
|
const { max, min, step } = this.data;
|
||||||
return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
|
return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user