index.wxml 581 B

123456789101112131415
  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>
  13. </Container>
  14. </view>
  15. </scroll-view>