index.wxml 512 B

12345678910111213
  1. <!--index.wxml-->
  2. <view class="container">
  3. <view class="userinfo">
  4. <button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称 </button>
  5. <block wx:else>
  6. <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
  7. <text class="userinfo-nickname">{{userInfo.nickName}}</text>
  8. </block>
  9. </view>
  10. <view class="usermotto">
  11. <text class="user-motto">{{motto}}</text>
  12. </view>
  13. </view>