loginBind.wxml 1.3 KB

123456789101112131415161718192021222324252627
  1. <!--pages/login/login.wxml-->
  2. <view class="loginWrap">
  3. <image mode="widthFix" class="background" src="../../images/bind_back.png"></image>
  4. <view class="loginBox">
  5. <view class="login">
  6. <view class="head">绑定账户</view>
  7. <view class="formGroup {{mobileActive?'focus':''}} {{mLine?'active':''}}">
  8. <view class="label">手机号码</view>
  9. <input bindinput="getAccount" bindfocus="mfocusInput" bindblur="mblurInput" value="{{mobile}}" class="input" type="number" maxlength="11" />
  10. </view>
  11. <view class="formGroup {{codeActive||code?'focus':''}} {{cLine?'active':''}}">
  12. <view class="label">验证码</view>
  13. <input bindinput="getSmsCode" bindfocus="cfocusInput" bindblur="cblurInput" value="{{smsCode}}" class="input" type="number" maxlength="6" />
  14. <button bindtap="sendCode" disabled="{{canSend}}" class="sendCode {{canSend?'disabled':''}}">{{timeText}}</button>
  15. </view>
  16. <!-- <view class="forgetPwd">忘记密码?</view> -->
  17. </view>
  18. <view class="operaWrap">
  19. <view class="remember">
  20. <!-- <view class="iconfont icon-unselected"></view>
  21. <view class="text">记住账号</view> -->
  22. </view>
  23. <button bindtap="login" class="loginBtn">登录</button>
  24. </view>
  25. </view>
  26. <view class="bottomText">成都利锐计算机有限公司提供技术支持</view>
  27. </view>