mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Slider): bar-height prop support number (#1971)
This commit is contained in:
parent
50478da7ef
commit
17b13d5616
@ -91,7 +91,7 @@ Page({
|
||||
| max | 最大值 | *number* | `100` |
|
||||
| min | 最小值 | *number* | `0` |
|
||||
| step | 步长 | *number* | `1` |
|
||||
| bar-height | 进度条高度 | *string* | `2px` |
|
||||
| bar-height | 进度条高度,默认单位为 `px` | *string \| number* | `2px` |
|
||||
| active-color | 进度条激活态颜色 | *string* | `#1989fa` |
|
||||
| inactive-color | 进度条默认颜色 | *string* | `#e5e5e5` |
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { touch } from '../mixins/touch';
|
||||
import { Weapp } from 'definitions/weapp';
|
||||
import { addUnit } from '../common/utils';
|
||||
|
||||
VantComponent({
|
||||
mixins: [touch],
|
||||
@ -27,7 +28,7 @@ VantComponent({
|
||||
value: 0
|
||||
},
|
||||
barHeight: {
|
||||
type: String,
|
||||
type: null,
|
||||
value: '2px'
|
||||
}
|
||||
},
|
||||
@ -77,10 +78,11 @@ VantComponent({
|
||||
|
||||
updateValue(value: number, end: boolean, drag: boolean) {
|
||||
value = this.format(value);
|
||||
const { barHeight } = this.data;
|
||||
|
||||
this.set({
|
||||
value,
|
||||
barStyle: `width: ${value}%; height: ${this.data.barHeight};`
|
||||
barStyle: `width: ${value}%; height: ${addUnit(barHeight)};`
|
||||
});
|
||||
|
||||
if (drag) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user