send-code.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <!--components/send-code/send-code.wxml-->
  2. <view class="container">
  3. <image src="{{img}}" class="bg"></image>
  4. <view class="header">
  5. <view class="title">输入验证码</view>
  6. <view class="phone">验证码已发送至 {{format_phone}}</view>
  7. </view>
  8. <view class="content">
  9. <view class="nums">
  10. <view wx:for='{{6}}' wx:key='index' class="nums-content" data-value="{{code[index]}}" bindtap="showFlash">
  11. <text>{{code[index]}}</text>
  12. <view class="flash" wx:if='{{!up}}' hidden="{{index !== code.length}}"></view>
  13. </view>
  14. </view>
  15. <view class="bar">
  16. <view class="bar-view" wx:for='{{6}}' wx:key='index'></view>
  17. </view>
  18. </view>
  19. <view class="count" bindtap="toTCaptcha">{{countdown}}</view>
  20. <view class="keyboard {{hidden||'show'}}">
  21. <block wx:for='{{keybord}}' wx:key='index' wx:for-index='key'>
  22. <view class="board" wx:for='{{item}}' wx:key='index' wx:if='{{key<3}}' data-value='{{item}}' bindtap='keyboard'>{{item}}</view>
  23. <block wx:if='{{key === 3}}'>
  24. <view class="board del" bindtap="cancel">取消</view>
  25. <view class="board" wx:for='{{keybord[3]}}' wx:key='index' data-value='{{item}}' bindtap="keyboard">{{item}}</view>
  26. <view class="board del" bindtap="del">
  27. <image class="board-image" src="/images/happyjob/keyboard_del.png"></image>
  28. </view>
  29. </block>
  30. </block>
  31. </view>
  32. </view>