my.wxml 3.0 KB

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