entry.wxml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <view class='container'>
  2. <!-- <view class="yonghu">
  3. <button class="conditions" open-type="getUserInfo" wx:if="{{condition}}" bind:tap="clckTap" lang="zh_CN" bindgetuserinfo="onGotUserInfo">
  4. 获取用户信息
  5. </button>
  6. </view> -->
  7. <view class='person-infor'>
  8. <image src='{{userInfo.avatarUrl}}' class='avatarUrl'></image>
  9. <view style='text-align:center;'>
  10. <view>{{userInfo.nickName}}</view>
  11. <view>得分:{{score}}</view>
  12. </view>
  13. <image src='../../imgs/entry_qr.svg' class='qr' bindtap='get_qr_address'></image> <!--注意不要跳转到web_view-->
  14. </view>
  15. <view class='choose' bindtap='gotoFighting'>
  16. <image src='../../imgs/entry_fighting.jpg'></image>
  17. <view>排位赛</view>
  18. </view>
  19. <view class='choose' bindtap='gotoFriends'>
  20. <image src='../../imgs/entry_friends.jpg'></image>
  21. <view>好友对战</view>
  22. </view>
  23. <view class='choose' bindtap='gotoRank'>
  24. <image src='../../imgs/entry_rank.jpg'></image>
  25. <view>好友排名</view>
  26. </view>
  27. </view>