huan_bang.wxml 693 B

1234567891011121314
  1. <view class="box">
  2. <view class="phone">
  3. <view class="put1">
  4. <input placeholder="请输入您的手机号" placeholder-class="place1" bindblur="ckPhone" value="{{phoneVal}}" type="number" bindinput="ckPhone"></input>
  5. </view>
  6. <view class="put2">
  7. <input placeholder="请输入验证码" placeholder-class="place1" bindblur="ckSms" value="{{smsVal}}" bindinput="ckSms" bindconfirm="ckSms" type="number"></input>
  8. <text bindtap="{{code == '获取验证码' ? 'getCode' : ''}}" disabled="{{codeDisable}}">{{code}}</text>
  9. </view>
  10. </view>
  11. <view class="phone_check flexC" bindtap="verify">
  12. <text>立即验证</text>
  13. </view>
  14. </view>