C端小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.wxml 454 B

6 år sedan
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>