friends_match.wxml 769 B

1234567891011121314151617181920212223
  1. <view class='header'>
  2. <view class='animated lightSpeedIn-left '>
  3. <image src='{{userInfo.avatarUrl}}'></image>
  4. <view style='text-align:center'>{{userInfo.nickName}}</view>
  5. </view>
  6. <view class='animated rubberBand'>{{status}}</view>
  7. <view class='animated lightSpeedIn-right'>
  8. <image src='{{user_others.avatarUrl}}'></image>
  9. <view style='text-align:center'>{{user_others.nickName}}</view>
  10. </view>
  11. </view>
  12. <view class='body'>
  13. <button class='containCircle animated-slow fadeInUp' bindtap='goback'>
  14. <image src='../../imgs/quit.svg'></image>
  15. <view>首页</view>
  16. </button>
  17. <button open-type='share' class='containCircle animated-slow fadeInUp'>
  18. <image src='../../imgs/share.svg'></image>
  19. <view>邀请</view>
  20. </button>
  21. </view>