movie-list-template.wxml 794 B

12345678910111213141516171819202122
  1. <import src="../movie/movie-template.wxml" />
  2. <template name="movieListTemplate">
  3. <view class="movie-list-container">
  4. <view class="inner-container">
  5. <view class="movie-head">
  6. <text class="slogan">{{categoryTitle}}</text>
  7. <view catchtap="onMoreTap" class="more" data-category="{{categoryTitle}}">
  8. <text class="more-text">更多</text>
  9. <image class="more-img" src="/images/icon/arrow-right.png"></image>
  10. </view>
  11. </view>
  12. <view class="movies-container">
  13. <scroll-view scroll-x style="width: 100%">
  14. <block wx:for="{{movies}}" wx:for-item="movie" wx:key="key">
  15. <template is="movieTemplate" data="{{...movie}}" />
  16. </block>
  17. </scroll-view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>