|
@@ -164,7 +164,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 超前项目推荐 & 定制化分析报告 P611需求:将报告插到列表第一条数据后面位置 -->
|
|
|
- <div class="recommend-card-container">
|
|
|
+ <div
|
|
|
+ class="recommend-card-container"
|
|
|
+ :style="{ opacity: cardLoaded ? 'unset' : '0' }"
|
|
|
+ >
|
|
|
<RecommendCard
|
|
|
ref="recommendCardRef"
|
|
|
v-if="recommendInfo.show"
|
|
@@ -425,6 +428,11 @@
|
|
|
>查看更多</van-button
|
|
|
>
|
|
|
</div>
|
|
|
+ <!-- 占位解决ios回弹底部遮挡 -->
|
|
|
+ <div
|
|
|
+ v-show="listState.list.length > 20 && $envs.inIOS"
|
|
|
+ class="seat"
|
|
|
+ ></div>
|
|
|
<AppEmpty v-show="listState.list.length === 0 && listState.finished">
|
|
|
<div class="empty-text" v-html="emptyText"></div>
|
|
|
<van-button
|
|
@@ -3216,6 +3224,10 @@ export default {
|
|
|
padding-bottom: 50px;
|
|
|
}
|
|
|
}
|
|
|
+.seat {
|
|
|
+ height: 60px;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
.sub-this-keywords {
|
|
|
display: flex;
|
|
|
align-items: center;
|