mine.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <view class="head-view">
  2. <image src="/static/img/my_bg.png"></image>
  3. <image wx:if="{{userInfo.headImg}}" src="{{userInfo.headImg}}" bindtap="personMsg"></image>
  4. <image wx:else src="/static/logo.png" bindtap="personMsg"></image>
  5. <text>{{userInfo.nickName?userInfo.nickName:'TOKER精酿'}}</text>
  6. </view>
  7. <!-- <view class="beer-hz">
  8. <view class="hz-view" bindtap="toBadges">
  9. <image src="/static/img/cjhz.png"></image>
  10. <text>成就徽章</text>
  11. </view>
  12. <view></view>
  13. <view class="hz-view" bindtap="toBadges">
  14. <image src="/static/img/jnhz.png"></image>
  15. <text>精酿徽章</text>
  16. </view>
  17. </view> -->
  18. <!-- style="position: relative;z-index: 3;margin-top:-66rpx;" -->
  19. <view class="item-box" style="position: relative;z-index: 3;margin-top:-66rpx;">
  20. <view class="item-view" bindtap="toMineMsg">
  21. <image src="/static/img/message.png"></image>
  22. <view>我的消息
  23. <block wx:if="{{userInfo.unreadMsgNum>0}}">
  24. <text class="redDot"></text> <text class="msgDot">有{{userInfo.unreadMsgNum}}条未读消息</text>
  25. </block>
  26. </view>
  27. <image src="/static/img/arrow.png"></image>
  28. </view>
  29. <view class="item-view" bindtap="toMinePush">
  30. <image src="/static/img/add.png"></image>
  31. <view>我的气泡</view>
  32. <image src="/static/img/arrow.png"></image>
  33. </view>
  34. </view>
  35. <view class="item-box">
  36. <view class="item-view" bindtap="toMineOrder">
  37. <image src="/static/img/list.png"></image>
  38. <view>我的订购</view>
  39. <image src="/static/img/arrow.png"></image>
  40. </view>
  41. <view class="item-view" bindtap="toMineAd">
  42. <image src="/static/img/location2.png"></image>
  43. <view>收货地址</view>
  44. <image src="/static/img/arrow.png"></image>
  45. </view>
  46. </view>
  47. <view class="item-box" style="height: auto;">
  48. <view class="item-view" bindtap="toAboutUs">
  49. <image src="/static/img/about.png"></image>
  50. <view>关于我们</view>
  51. <image src="/static/img/arrow.png"></image>
  52. </view>
  53. </view>