live_share.wxml 1.21 KB
<view class="container">
	<!-- 列表 -->
	<view class="list-container">
		<!-- 标题 -->
		<view class="subTab-title flex">
			<block wx:for="{{tab2}}">
				<view class="subTab-titleItem {{currentIndex2 == index ? 'active':''}}" data-index="{{index}}" bindtap="clickTab2">{{item}}</view>
			</block>
		</view>
		<!-- 列表项 -->
		<scroll-view
		 class="list"
		 scroll-y="true"
		 scroll-anchoring
		 refresher-enabled>
		 
		  <!-- 暂无数据 -->
			<nodata nodataContainer="nodata">暂无数据</nodata>
							
			<!-- 专享礼包 -->
			<block>
				<view class class="list-item">
					<view class="img-container {{currentIndex2 == 0?'live':currentIndex2 == 1?'coming':'playback'}}"></view>
					<view class="details">
						<view class="ellipsis-2 fs28 name">商品名称商品名称商品名称商品名称商品名称商品名称商品名称商品名称商品名称</view>
						<view class="pdt20 fs26 red">直播时间:2020-12-31 18:00</view>
						<view class="fs26 red pdv10">主播:何大大</view>
						<view class="t-r fs28 pdt10"><view class="btn-share">分享</view></view>
					</view>
				</view>
			</block>
			
			<view class="no-more t-c">- 已全部加载 -</view>
		</scroll-view>
	</view>
</view>