input_number.wxml 1.0 KB

12345678910111213141516171819202122232425
  1. <view class="box">
  2. <view class="title">
  3. <text>让单车</text>
  4. <text>成为青春美好回忆</text>
  5. </view>
  6. <view class="img">
  7. <image src="{{img}}weapp/code.png" style="width:392rpx;height:392rpx;"></image>
  8. </view>
  9. <view class="bottom">
  10. <view class="btm_top">
  11. <view>客官不要灰心</view>
  12. <view>输入车身二维码下一排小数字也可用车呦</view>
  13. </view>
  14. <view class="btm_center">
  15. <!-- <input type="number" bindblur="code" bindinput="code" bindconfirm="code"></input> -->
  16. <view class="query_num_block">
  17. <input class="num_item_block" wx:for="{{inputLen}}" wx:key="{{index}}" disabled bindtap='onFocus' value="{{code.length>=index+1?code[index]:''}}" type='number' />
  18. </view>
  19. <input name="password" password="{{true}}" class='hidden_ipt' maxlength="{{inputLen}}" focus="{{isFocus}}" bindinput="setValue" type='number'></input>
  20. </view>
  21. <view class="btm_btm flexC" bindtap="start">
  22. <text>开始用车</text>
  23. </view>
  24. </view>
  25. </view>