index.wxml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">Steps</view>
  4. <view class="page__desc">步骤条</view>
  5. </view>
  6. <view class="page__bd">
  7. <view class="sub-title">Default</view>
  8. <wux-steps>
  9. <wux-step status="finish" title="Finished" content="This is description"></wux-step>
  10. <wux-step status="process" title="In Progress" content="This is description"></wux-step>
  11. <wux-step status="wait" title="Waiting" content="This is description"></wux-step>
  12. </wux-steps>
  13. <view class="sub-title">Direction = vertical</view>
  14. <wux-steps direction="vertical">
  15. <wux-step status="finish" title="Finished" content="This is description"></wux-step>
  16. <wux-step status="process" title="In Progress" content="This is description"></wux-step>
  17. <wux-step status="error" title="Error" content="This is description"></wux-step>
  18. </wux-steps>
  19. <view class="sub-title">Current</view>
  20. <wux-steps current="{{ current }}">
  21. <wux-step title="First"></wux-step>
  22. <wux-step title="Second"></wux-step>
  23. <wux-step title="Third"></wux-step>
  24. </wux-steps>
  25. <view class="button-sp-area">
  26. <wux-button block type="light" bind:click="onClick">Next step</wux-button>
  27. </view>
  28. </view>
  29. </view>