login.wxml 1.2 KB

12345678910111213141516171819202122232425
  1. <!--pages/login/login.wxml-->
  2. <view class="login-container" wx:if="{{!showBindTips}}">
  3. <view class="content">
  4. <image src='http://img-test.gz-yami.com/mini/logo.jpg' class='c-logo'></image>
  5. <view class="title">海马购精选</view>
  6. <view class="msg">申请获得你的公开信息(昵称、头像等)</view>
  7. </view>
  8. <view class="login-phone">
  9. <button class="authorized-btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">微信一键登录</button>
  10. </view>
  11. <view class="login-phone">
  12. <button class="authorized-btn hole-btn" bindtap="toLogin">账号密码登录</button>
  13. </view>
  14. <!-- <view class="login-bottom">
  15. <button class="authorized-btn bottom-btn" open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">微信登录</button>
  16. <button class="authorized-btn bottom-btn" bindtap="toLogin">账号登录</button>
  17. </view> -->
  18. </view>
  19. <view class="bind-tips" wx:if="{{showBindTips}}">
  20. <view class="user-info">
  21. <open-data class="head-img" type="userAvatarUrl"></open-data>
  22. <open-data class="userNickName" type="userNickName"></open-data>
  23. </view>
  24. <button class="authorized-btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">手机号一键登录</button>
  25. </view>