12345678910111213141516171819 |
- <!--index.wxml-->
- <scroll-view class="scrollarea" scroll-y type="list">
- <view class="index_main">
- <Container style="margin-top: -100rpx;">
- <video src="{{ori.baseVideoUrl}}" autoplay />
- <view class="list" wx:for="{{ori.textList || []}}" wx:key="index">
- <view class="btn">{{item.title}}</view>
- <view wx:for="{{item.content || []}}" wx:for-item="v" wx:for-index="i" wx:key="i">
- <view class="list_label">· {{v.title}}</view>
- <view class="list_value">{{v.content}}</view>
- </view>
- <view class="item" wx:if="{{item.data}}" data-item="{{item.data}}" bind:tap="toNext">
- <image mode="aspectFit" class="item_image" wx:if="{{item.data.cover}}" src="{{item.data.cover}}" />
- <view class="title">{{item.data.title}}</view>
- </view>
- </view>
- </Container>
- </view>
- </scroll-view>
|