uniapp 项目中uni-drawer 组件中内容超出样式设置溢出滚动只能滚动但是无法滑动问题
在需要滚动的外层换成scroll-view 即可。
·
uniapp 项目中uni-drawer 组件中内容超出样式设置溢出滚动只能滚动但是无法滑动问题
<scroll-view class="warp" scroll-y="true">
<view v-for="item in progress" :key="item.id" :class="{ 'progress-item': true, 'progress-item-active': item.id == id }" @click="() => onClickProgressItem(item)">
<view>
<view class="progress-item-title">{{ item.title }}</view>
<view class="progress-item-pbtime">
<text>{{ ymd(item.public_time) }}</text>
<text>|</text>
<text>{{ item.category }}</text>
</view>
</view>
</view>
</scroll-view>
在需要滚动的外层换成scroll-view 即可
更多推荐
已为社区贡献1条内容
所有评论(0)