user.wxml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!--为使用者-我的页面-->
  2. <view class="card">
  3. <cover-image class="avatar" src="{{hasUserInfo ? userInfo.avatarUrl : '/images/user/user.png'}}"></cover-image>
  4. <view wx:if="{{hasUserInfo}}" class="nickname primary-text">{{userInfo.nickName}}</view>
  5. <view wx:else class="nickname"><button class="block-background-color" size="mini" open-type="getUserInfo"
  6. bindgetuserinfo="bindGetUserInfo">微信登录</button></view>
  7. <view class="location secondary-text">{{publisherId.length == 0 ? '尚未加入任何社团组织' : publisherName}}</view>
  8. </view>
  9. <view class="mid" wx:if="{{hasUserInfo}}">
  10. <view class="btn block-background-color" hover-class="btn-hover" bindtap="myFavor">
  11. <image class="btn-icon" mode="aspectFit" src="/images/user/like.png"></image>
  12. <view class="btn-text primary-text">我的收藏</view>
  13. </view>
  14. <view class="btn block-background-color" hover-class="btn-hover" bindtap="myFollow">
  15. <image class="btn-icon" mode="aspectFit" src="/images/user/follow.png"></image>
  16. <view class="btn-text primary-text">我的关注</view>
  17. </view>
  18. <view class="btn block-background-color" hover-class="btn-hover" bindtap="myQuestion">
  19. <image class="btn-icon" mode="aspectFit" src="/images/user/question.png"></image>
  20. <view class="btn-text primary-text">我的提问</view>
  21. </view>
  22. <view class="bottom">
  23. <view class="btn" bindtap="setting">
  24. <image class="btn-icon" mode="aspectFit" src="/images/user/setting.png"></image>
  25. <view>设置</view>
  26. </view>
  27. <view class="btn" bindtap="aboutUs">
  28. <image class="btn-icon" mode="aspectFit" src="/images/user/about.png"></image>
  29. <view>关于我们</view>
  30. </view>
  31. <view class="btn" bindtap="opinion">
  32. <image class="btn-icon" mode="aspectFit" src="/images/user/feedback.png"></image>
  33. <view>意见反馈</view>
  34. </view>
  35. </view>
  36. </view>
  37. <view wx:if="{{publisherId.length == 0}}" class="publisher primary-background-color" hover-class="btn-hover"
  38. bindtap="publisherLogin">
  39. <text class="white-text-color">社团\n组织\n入驻</text>
  40. </view>
  41. <view wx:else class="publisher primary-background-color" hover-class="btn-hover" bindtap="publisherPage">
  42. <text class="white-text-color">社团\n组织\n管理</text>
  43. </view>