user.wxml 2.6 KB

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