index.wxml 1.0 KB

12345678910111213141516171819202122232425
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">Vcode</view>
  4. <view class="page__desc">验证码</view>
  5. </view>
  6. <view class="page__bd">
  7. <wux-cell-group title="Default">
  8. <wux-cell hover-class="none">
  9. <wux-input label="Vcode" placeholder="Please input vcode" />
  10. <view slot="footer" class="vcode">
  11. <wux-vcode bind:change="onChange" />
  12. </view>
  13. </wux-cell>
  14. <wux-cell hover-class="none">
  15. <wux-input label="Vcode" placeholder="Please input vcode" />
  16. <view slot="footer" class="vcode">
  17. <wux-vcode id="custom-canvas" str="1234567890" bgColor="#e6f6ff" fontColor="#165189" hasPoint hasLine bind:change="onChange" />
  18. </view>
  19. </wux-cell>
  20. </wux-cell-group>
  21. <view class="button-sp-area">
  22. <wux-button block type="light" bind:click="onClick">Refresh Vcode</wux-button>
  23. </view>
  24. </view>
  25. </view>