index.wxml 745 B

1234567891011121314151617
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">Circle</view>
  4. <view class="page__desc">进度环</view>
  5. </view>
  6. <view class="page__bd page__bd_spacing">
  7. <view class="sub-title">Color</view>
  8. <wux-circle percent="80" color="#387ef5">#387ef5</wux-circle>
  9. <view class="sub-title">BackgroundColor</view>
  10. <wux-circle percent="80" background-color="#ef473a">#ef473a</wux-circle>
  11. <view class="sub-title">Size</view>
  12. <wux-circle percent="80" size="90">80%</wux-circle>
  13. <view class="sub-title">Other</view>
  14. <wux-circle percent="{{ percent }}">{{ percent + '%' }}</wux-circle>
  15. <wux-button block type="light" bind:click="add">Add</wux-button>
  16. </view>
  17. </view>