live_share.wxml
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<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>