- <!--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>
- </Container>
- </view>
- </scroll-view>
|