vant-weapp/dist/progress/index.wxml
2019-06-24 20:21:24 +08:00

17 lines
524 B
Plaintext

<wxs src="./index.wxs" module="getters" />
<view class="van-progress custom-class">
<view
class="van-progress__portion"
style="width: {{ percentage }}%; background: {{ inactive ? '#cacaca' : color }}"
>
<view
wx:if="{{ showPivot && getters.text(pivotText, percentage) }}"
style="color: {{ textColor }}; background: {{ pivotColor ? pivotColor : inactive ? '#cacaca' : color }}"
class="van-progress__pivot"
>
{{ getters.text(pivotText, percentage) }}
</view>
</view>
</view>