uni-app中在模拟器上内容可以滚动,真机上失效问题解决
1、刚刚开始使用的是view组件,给定了高度,超出部分y轴滚动,微信小程序模拟器上面一直为正常
代码如下:文章来源:https://www.toymoban.com/news/detail-807078.html
<template>
<tn-popup v-model="show"
safeAreaInsetBottom
mode="bottom"
closeBtn
@close="handleClose"
:maskCloseable="false"
height="70vh"
>
<view class="music-container">
<view class="music-list"></view>
</view>
</tn-popup>
</template>
<style scoped lang="scss">
.music-list {
max-height: 60vh; // 给定固定高度
overflow-y: scroll; // y轴滚动
}
</style>
2、为了适配真机,在view组件外边套用了scroll-view,利用该组件中的组件配置滚动文章来源地址https://www.toymoban.com/news/detail-807078.html
<template>
<tn-popup v-model="show"
safeAreaInsetBottom
mode="bottom"
height="1200rpx"
@close="handleClose">
<view class="music-container">
<scroll-view scroll-y style="height: 1050rpx;">
<view class="music-list"></view>
</scroll-view>
</view>
</tn-popup>
</template>
到了这里,关于uni-app中在模拟器上内容可以滚动,真机上失效问题解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!