index.wxml 454 B

12345678910
  1. <view class="i-class i-progress i-progress-{{ status }} {{ !hideInfo ? 'i-progress-show-info' : '' }}">
  2. <view class="i-progress-outer">
  3. <view class="i-progress-inner">
  4. <view class="i-progress-bg" style="width: {{percent}}%;height: {{strokeWidth}}px"></view>
  5. </view>
  6. </view>
  7. <view class="i-progress-text" wx:if="{{ !hideInfo }}">
  8. <view class="i-progress-text-inner">{{ percent }}%</view>
  9. </view>
  10. </view>