showItem.wxml 1023 B

123456789101112131415161718192021222324252627282930
  1. <view class="hmly-content-list">
  2. <view class="hmly-bar-title">
  3. <view class="hmly-title-left">{{title}}</view>
  4. <view class="hmly-title-right">查看全部<text class="icon-right"></text></view>
  5. </view>
  6. <block wx:for="{{showList}}" wx:key="index">
  7. <view
  8. class="hmly-content"
  9. bindtap="gotoDetails"
  10. data-coverImg="{{item.albumCoverUrl290}}"
  11. data-title="{{item.title}}"
  12. >
  13. <view class="hmly-content-img">
  14. <image src="{{item.albumCoverUrl290}}" mode="widthFix" lazy-load="false"></image>
  15. </view>
  16. <view class="hmly-content-right">
  17. <view class="hmly-content-title">
  18. <view class="hmly-title-text">{{item.title}}</view>
  19. <view class="hmly-introduction">{{item.trackTitle}}</view>
  20. </view>
  21. <view class="hmly-count">
  22. <view class="hmly-play-count">
  23. 126亿
  24. </view>
  25. <view class="hmly-ji-count">{{item.tracks}}集</view>
  26. </view>
  27. </view>
  28. </view>
  29. </block>
  30. </view>