auth.wxml 590 B

12345678910111213141516171819
  1. <view wx:if="{{isShow}}">
  2. <view wx:if="{{canIUse}}">
  3. <view class='header'>
  4. <image src='{{imgServerUrl}}/images/login/wx_login.jpg'></image>
  5. </view>
  6. <view class='content'>
  7. <view>申请获取以下权限</view>
  8. <text>获得你的微信绑定手机号</text>
  9. </view>
  10. <button class='bottom' type='primary' open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">
  11. 获取手机号
  12. </button>
  13. </view>
  14. <view wx:else>请升级微信版本</view>
  15. </view>
  16. <privacy-popup initCheck bind:privacyCancel="privacyCancel"> </privacy-popup>