progress.wxml 837 B

123456789101112131415161718192021222324252627282930
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'progress'}}"/>
  5. <view class="page-body">
  6. <view class="page-section page-section-gap">
  7. <view class="progress-box">
  8. <progress percent="20" show-info stroke-width="3"/>
  9. </view>
  10. <view class="progress-box">
  11. <progress percent="40" active stroke-width="3" />
  12. <icon class="progress-cancel" type="cancel"></icon>
  13. </view>
  14. <view class="progress-box">
  15. <progress percent="60" active stroke-width="3" />
  16. </view>
  17. <view class="progress-box">
  18. <progress percent="80" color="#10AEFF" active stroke-width="3" />
  19. </view>
  20. </view>
  21. </view>
  22. <template is="foot" />
  23. </view>