C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
454 B

  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>