login.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--pages/login/login.wxml-->
  2. <view class="body" style="background-image: url({{imgPath}}/login-bg.png);">
  3. <view class="app-title">
  4. <image mode="aspectFit" src="{{imgPath}}/login-app-name.png" style="height: 63rpx;"></image>
  5. </view>
  6. <view class="login">
  7. <form bindsubmit="loginSys">
  8. <view class="login-row">
  9. <image class="login-phone" mode="heightFix" src="{{imgPath}}/login-phone.png"></image>
  10. <input type="number" class="login-input" name="phone" maxlength="11" placeholder="请输入手机号" placeholder-style="color:#fff" bindinput="setPhone" />
  11. </view>
  12. <view class="login-row" wx:if="{{!showPwd}}">
  13. <image class="login-phone" mode="heightFix" src="{{imgPath}}/login-verify.png"></image>
  14. <input type="number" class="login-input" name="code" maxlength="6" style="width: 50%;" placeholder="请输入验证码" placeholder-style="color:#fff" bindinput="setVcode" />
  15. <text class="send_btn" bindtap="getVerifyCode">{{sendText}}</text>
  16. </view>
  17. <view class="login-row" wx:if="{{showPwd}}">
  18. <image class="login-phone" mode="heightFix" src="{{imgPath}}/login-pwd.png"></image>
  19. <input type="text" password="true" class="login-input" name="password" maxlength="20" placeholder="请输入密码" placeholder-style="color:#fff" />
  20. </view>
  21. <view class="login-type">
  22. <view></view>
  23. <view bindtap="changeType">{{loginType}}</view>
  24. </view>
  25. <button class="login-btn" formType="submit" style="background-image: url({{imgPath}}/login-btn.png);">登录</button>
  26. </form>
  27. </view>
  28. <view class="line-row">
  29. <view class="line"></view>
  30. <text>快捷登录</text>
  31. <view class="line"></view>
  32. </view>
  33. <view class="fast-login">
  34. <button class="wxBtn" plain="true" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" style="background-image:url({{imgPath}}/loginn-wx.png)"></button>
  35. </view>
  36. <view class="app-bottom">大城细管·大城众管 ·大城智管</view>
  37. </view>