19 lines
		
	
	
		
			577 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			577 B
		
	
	
	
		
			Plaintext
		
	
	
	
| <!--pages/video/index.wxml-->
 | |
| 
 | |
| <view class="page">
 | |
| <view style="width:100%;display:flex;">
 | |
|   <block wx:for="{{videos}}" wx:key="unique">
 | |
|   <view style="width: 50%;height: 300rpx;margin-top:10rpx">
 | |
|   <view style="height: 240rpx; margin-left:10rpx; margin-right: 10rpx;">
 | |
|     <image src="{{item.coverurl}}" style="border-radius: 5%;"></image>
 | |
|   </view>
 | |
|   <view style="height: 60rpx; margin-left:10rpx; margin-right: 10rpx;font-size: 14px;">
 | |
|     <text>{{item.name}}</text>
 | |
|     <text style="color:red;font-weight: bold;">--0%</text>
 | |
|   </view>
 | |
|   </view>
 | |
|   </block>
 | |
| </view>
 | |
| </view>
 | |
| 
 |