index.wxml 870 B

12345678910111213141516171819
  1. <!--index.wxml-->
  2. <scroll-view class="scrollarea" scroll-y type="list">
  3. <view class="index_main">
  4. <Container style="margin-top: -100rpx;">
  5. <video src="{{ori.baseVideoUrl}}" autoplay />
  6. <view class="list" wx:for="{{ori.textList || []}}" wx:key="index">
  7. <view class="btn">{{item.title}}</view>
  8. <view wx:for="{{item.content || []}}" wx:for-item="v" wx:for-index="i" wx:key="i">
  9. <view class="list_label">· {{v.title}}</view>
  10. <view class="list_value">{{v.content}}</view>
  11. </view>
  12. <view class="item" wx:if="{{item.data}}" data-item="{{item.data}}" bind:tap="toNext">
  13. <image mode="aspectFit" class="item_image" wx:if="{{item.data.cover}}" src="{{item.data.cover}}" />
  14. <view class="title">{{item.data.title}}</view>
  15. </view>
  16. </view>
  17. </Container>
  18. </view>
  19. </scroll-view>