my.wxml 997 B

123456789101112131415161718192021222324
  1. <view class="my">
  2. <view class="title" style="padding-top:{{navTop}}px;">
  3. <view class="titles">我的</view>
  4. </view>
  5. <view class="login">
  6. <image src="https://www.icelook.cn/exhibition/images/icon/head1.png" alt=""></image>
  7. <!-- <image :src="avatar" alt=""></image> -->
  8. <span class="text">{{name}}</span>
  9. </view>
  10. <view class="my_list">
  11. <view class="item" bindtap="gocollect">
  12. <image src="https://www.icelook.cn/exhibition/images/icon/my1.png" alt=""></image>
  13. <text>我的收藏</text>
  14. </view>
  15. <view class="item" bindtap="goindent">
  16. <image src="https://www.icelook.cn/exhibition/images/icon/my2.png" alt=""></image>
  17. <text>我的订单</text>
  18. </view>
  19. <view class="item" bindtap="goremamber">
  20. <image src="https://www.icelook.cn/exhibition/images/icon/my3.png" alt=""></image>
  21. <text>参展纪念</text>
  22. </view>
  23. </view>
  24. </view>