Merge pull request #2018 from JakeLaoyu/feat/progress-add-stroke-width-prop

feat(Progress): add stroke-width prop
This commit is contained in:
Jake 2019-09-11 11:34:31 +08:00 committed by GitHub
commit e159f5643e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 1 deletions

View File

@ -2,6 +2,10 @@
<van-progress custom-class="progress" percentage="50" />
</demo-block>
<demo-block title="线条粗细">
<van-progress custom-class="progress" stroke-width="8" percentage="50" />
</demo-block>
<demo-block title="置灰">
<van-progress custom-class="progress" inactive percentage="50" />
</demo-block>

View File

@ -19,6 +19,14 @@
<van-progress percentage="50" />
```
### 线条粗细
通过`stroke-width`可以设置进度条的粗细
```html
<van-progress :percentage="50" stroke-width="8" />
```
### 置灰
```html

View File

@ -1,5 +1,6 @@
import { VantComponent } from '../common/component';
import { BLUE } from '../common/color';
import { addUnit } from '../common/utils';
VantComponent({
props: {
@ -18,6 +19,24 @@ VantComponent({
textColor: {
type: String,
value: '#fff'
},
strokeWidth: {
type: null,
observer: 'setStrokeWidthUnit'
}
},
data() {
return {
strokeWidthUnit: '4px'
};
},
methods: {
setStrokeWidthUnit(val) {
this.setData({
strokeWidthUnit: addUnit(val)
});
}
}
});

View File

@ -1,6 +1,6 @@
<wxs src="./index.wxs" module="getters" />
<view class="van-progress custom-class">
<view class="van-progress custom-class" style="height: {{ strokeWidthUnit }};">
<view
class="van-progress__portion"
style="width: {{ percentage }}%; background: {{ inactive ? '#cacaca' : color }}"