loginMobeil.wxml 1015 B

123456789101112131415161718192021
  1. <view class="login-mobeil-content">
  2. <text class="title">手机快捷登录</text>
  3. <view class="part">
  4. <view class="prefix" bind:tap="tapAreaCodeAction">
  5. ({{prefixArr[prefixIndex].code}}) {{prefixArr[prefixIndex].name}}
  6. <image class="down" src="https://static.hoolihome.com/weapp/uk/imgs/down_n.png"></image>
  7. </view>
  8. <input class="ipt-mobile" maxlength="11" type="number" placeholder-class="gray" placeholder="请输入手机号码" value="{{ mobile }}" bindinput="mobileChange" />
  9. </view>
  10. <view class="part">
  11. <view class="code-outer">
  12. <input type="number" class="ipt-code" maxlength="6" placeholder-class="gray" placeholder="请输入验证码" value="{{ verifyCode }}" bindinput="codeChange" />
  13. </view>
  14. <view class="btn-code {{btnCodeDisable ? 'btn-code-disable' : ''}}" bindtap="handleSendCode">
  15. {{codeText}}
  16. </view>
  17. </view>
  18. <button class="btn-outer {{btnSureDisable ? 'btn-sure-disbale' : ''}}" bindtap="handleSure">
  19. 登录
  20. </button>
  21. </view>