|
@@ -137,13 +137,10 @@ export default class Index extends Component {
|
137
|
137
|
<View>
|
138
|
138
|
{list.map(item =>
|
139
|
139
|
<FansItem key={item.uvId} data={item} />)}
|
140
|
|
- <View style="text-align:center;line-height:160rpx;font-size:28rpx;color:#999"> 仅展示最近N条记录~</View>
|
|
140
|
+ {list.length >= 50 && <View style="text-align:center;line-height:120rpx;font-size:24rpx;color:#999"> 仅展示最近50条围观记录</View>}
|
141
|
141
|
</View>
|
142
|
|
-
|
143
|
142
|
: <EmptyPage text="暂无围观记录哦~" />}
|
144
|
143
|
|
145
|
|
-
|
146
|
|
-
|
147
|
144
|
</View>
|
148
|
145
|
|
149
|
146
|
);
|