index.wxml 1.0 KB

12345678910111213141516
  1. <view class="container l-class">
  2. <view class="text l-text-class" wx:if="{{showInfo && textPosition==='left'}}" style="color:{{textColor?textColor:''}};margin-right:{{interval}}rpx">
  3. {{percent}}%
  4. </view>
  5. <view class="progress short" style="height:{{strokeWidth}}rpx;">
  6. <view class="slot" style="margin-left:{{marginLeft}}rpx;margin-top:{{marginTop}}rpx;">
  7. <slot name="header"></slot>
  8. </view>
  9. <view class="percent {{activeColor?'':'active'}} l-active-class" style="width:{{percent}}%;height:{{strokeWidth}}rpx;border-radius:{{borderRadius}}rpx;{{activeColor?'background-color:'+activeColor+';':''}}"></view>
  10. <view class="background l-background-class" style="height:{{strokeWidth}}rpx;border-radius:{{borderRadius}}rpx;background-color:{{backgroundColor}};"></view>
  11. </view>
  12. <view class="text l-text-class" wx:if="{{showInfo && textPosition==='right'}}" style="color:{{textColor?textColor:''}};margin-left:{{interval}}rpx">
  13. {{percent}}%
  14. </view>
  15. </view>