demo.wxml 716 B

123456789101112131415161718192021222324
  1. <view class="container">
  2. <button bindtap="gologin">微信登录</button>
  3. </view>
  4. <!-- 弹框 -->
  5. <view class="pop_root" hidden="{{isHidden}}">
  6. <view class="pop_content">
  7. <view class="pot_tip">授权登录弹窗</view>
  8. <button class="pop_avatar" open-type="chooseAvatar" bindchooseavatar="getAvatar">
  9. <image class="pop_img" wx:if="{{avatarUrl}}" src="{{avatarUrl}}" />
  10. <view wx:else>获取头像</view>
  11. </button>
  12. <input
  13. class="pop_name"
  14. type="nickname"
  15. bindblur="getName"
  16. placeholder="点击获取昵称"/>
  17. <view class="pop_bot">
  18. <view class="btn" bind:tap="potNo">取消</view>
  19. <view class="btn1" bind:tap="popYes">确定</view>
  20. </view>
  21. </view>
  22. </view>