123456789101112131415161718192021222324252627282930 |
- <import src="../../../common/head.wxml" />
- <import src="../../../common/foot.wxml" />
- <view class="container page" data-weui-theme="{{theme}}">
- <template is="head" data="{{title: 'progress'}}"/>
- <view class="page-body">
- <view class="page-section page-section-gap">
- <view class="progress-box">
- <progress percent="20" show-info stroke-width="3"/>
- </view>
- <view class="progress-box">
- <progress percent="40" active stroke-width="3" />
- <icon class="progress-cancel" type="cancel"></icon>
- </view>
- <view class="progress-box">
- <progress percent="60" active stroke-width="3" />
- </view>
- <view class="progress-box">
- <progress percent="80" color="#10AEFF" active stroke-width="3" />
- </view>
- </view>
- </view>
- <template is="foot" />
- </view>
|