就是这样的页面,在H5端page页会超出滚动,微信小程序没问题,文档说H5端要减掉tabbar和导航栏高度,已经按照要求减掉了,还是会滚动。
// index.vue
<template>
<view class="content">
<!-- 引用swiper-tabbar组件 -->
<swiper-tabbar :tabBars="tabBars" :currTabIndex="currTabIndex" :newsList="newsList" :status="loadMoreStatus" @tabtap="tabtap"
@onLoadMore="onLoadMore">
<!-- 引用index-list组件,slot传值 -->
<template v-slot="{ item }">
<index-list :item="item"></index-list>
</template>
</swiper-tabbar>
</view>
</template>
<style scoped>
.content {
width: 750rpx;
/* #ifdef MP-WEIXIN */
height: 100vh;
/* #endif */
/* #ifndef MP-WEIXIN */
height: calc(100vh - var(--status-bar-height) - var(--window-bottom));
/* #endif */
/* overflow: hidden; */
}
</style>