帮你贷的小程序

signup.wxml 1.2KB

12345678910111213141516171819202122232425
  1. <view class='register_logo'>
  2. <image src='http://m.henhaojie.com/images/KX0004.png' class='logo_img'></image>
  3. </view>
  4. <view class='item'>
  5. <!-- 手机号 -->
  6. <view class="item-inner">
  7. <view class="item-title">手机号</view>
  8. <view class="item-input">
  9. <input type="number" maxlength="11" placeholder="请输入手机号码" confirm-type="done" name='phonename' value="{{mobile}}" bindinput='phoneUpdate' bindfocus="hideErrMsg"/>
  10. <icon class="input_btn_icon {{showIcon ? 'icon_show' : 'icon_hide' }}" bindtap='clearPhone'></icon>
  11. </view>
  12. </view>
  13. <!-- 验证码 -->
  14. <view class="wrapper">
  15. <view class="item-inner">
  16. <view class="item-title">验证码</view>
  17. <view class="item-input label">
  18. <input maxlength="4" placeholder="请输入验证码" bindinput="codeUpdate" name='codename' value="{{code}}" bindfocus="hideErrMsg"/>
  19. </view>
  20. <view bindtap='getCode' class="get_code {{counting ? 'unable' : 'enable'}}">{{codeNotice}}</view>
  21. </view>
  22. </view>
  23. <view class="{{showErrMsg ? 'block' : 'none' }} yzm_hide elli" bindtap="hideCode">{{errorMsg}}</view>
  24. </view>
  25. <button form-type="submit" class='item_btn' bindtap="goLogin"> 提交 </button>