binding-phone.wxml 834 B

123456789101112131415161718192021
  1. <!--pages/binding-phone/binding-phone.wxml-->
  2. <view class='container'>
  3. <view class='binding-phone'>
  4. <!-- <block wx:for='{{couponList}}' wx:key=''> -->
  5. <view class='item'>
  6. <text class='item-tip'>手机号码:</text>
  7. <input placeholder='输入手机号码' type='number' maxlength='11' value="{{phonenum}}" bindinput="onPhoneInput" ></input>
  8. </view>
  9. <view class='item '>
  10. <text class='item-tip'>验证码:</text>
  11. <input placeholder='输入验证码' type='number' value="{{code}}" bindinput="onCodeInput" ></input>
  12. <text class='get-code gray' bindtap='getCodeNumber'>获取验证码</text>
  13. </view>
  14. <!-- </block> -->
  15. </view>
  16. <view class='btn-box'>
  17. <text class='sure-btn gray'>确定</text>
  18. <text class='sure-btn '>确定</text>
  19. </view>
  20. </view>