my.wxml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template name="my">
  2. <view class='mine-container'>
  3. </view>
  4. <!-- <view class='containers'>
  5. <view class='mine-top' bindtap='toAttentionMe'>
  6. <view class='avatar-box'>
  7. <image src="{{ myData.imgUrl }}" background-size="cover"></image>
  8. </view>
  9. <view class='mine-info'>
  10. <view>用户{{ myData.name }}</view>
  11. <view>{{ myData.address[0] }},{{ myData.address[1] }},{{ myData.address[2] }}</view>
  12. </view>
  13. <view class='edit'>
  14. <view class='icon'></view>
  15. </view>
  16. </view>
  17. <view class='category'>
  18. <view class='play'>
  19. <view>{{ myData.playNum }}</view>
  20. <text>播放</text>
  21. </view>
  22. <view class='attention'>
  23. <view>{{ myData.attentionCount }}</view>
  24. <text>关注</text>
  25. <view class='attentionCount' bindtap='attentionCountAdd'>+5</view>
  26. </view>
  27. <view class='point'>
  28. <view>{{ myData.point }}</view>
  29. <text>赞</text>
  30. </view>
  31. <view class='red-flower'>
  32. <view>{{ myData.flowerNum }}</view>
  33. <text>红花</text>
  34. </view>
  35. </view>
  36. <view class='wallet'>
  37. <view class='wallet-title'>
  38. <view class='image-box'>
  39. <image src='{{ myData.imgUrl }}'></image>
  40. </view>
  41. <text class='text'>钱包</text>
  42. </view>
  43. <view class='wallet-detail'> > </view>
  44. </view>
  45. <view class='grouping'>
  46. <view class='grouping-title'>
  47. <view class='image-box'>
  48. <image src='{{ myData.imgUrl }}'></image>
  49. </view>
  50. <text class='text'>我的拼团</text>
  51. </view>
  52. <view class='grouping-detail'> > </view>
  53. </view>
  54. <view class='reader'>
  55. <view class='reader-title'>
  56. <view class='image-box'>
  57. <image src='{{ myData.imgUrl }}'></image>
  58. </view>
  59. <text class='text'>我的朗读</text>
  60. </view>
  61. <view class='reader-detail'> > </view>
  62. </view>
  63. <view class='keep'>
  64. <view class='keep-title'>
  65. <view class='image-box'>
  66. <image src='{{ myData.imgUrl }}'></image>
  67. </view>
  68. <text class='text'>我的收藏</text>
  69. </view>
  70. <view class='keep-detail'> > </view>
  71. </view>
  72. <view class='attention-me'>
  73. <view class='attention-me-title'>
  74. <view class='image-box'>
  75. <image src='{{ myData.imgUrl }}'></image>
  76. </view>
  77. <text class='text'>我的关注</text>
  78. </view>
  79. <view class='attention-me-detail'> > </view>
  80. </view>
  81. </view> -->
  82. </template>