index.wxml 676 B

1234567891011121314
  1. <!--index.wxml-->
  2. <view class="wrap">
  3. <view class="wrap_nr">
  4. <image class="user_thumb" src="{{ userInfo.thumb }}"></image>
  5. <view class="user_name">您好,{{ userInfo.nickname }}</view>
  6. <view class="tips">为了您的账户安全,请绑定手机号</view>
  7. <button class="custom_btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"><van-icon name="wechat" size="24" color="#ffffff" />微信手机号一键绑定</button>
  8. <view class="single" bind:tap="toPhoneLogin">使用其他手机号</view>
  9. </view>
  10. </view>
  11. <!-- loading -->
  12. <!-- <van-overlay show="{{ loading }}" z-index="100">
  13. <van-loading custom-class="custom_loading" />
  14. </van-overlay> -->