Closed 1004801012 closed 5 years ago
暂时无法复现
<template>
<div class="md-example-child md-example-child-scroll-view md-example-child-scroll-view-2">
<md-scroll-view
ref="scrollView"
:scrolling-x="false"
@refreshing="$_onRefresh"
@end-reached="$_onEndReached"
:auto-reflow="true"
>
<md-scroll-view-refresh
slot="refresh"
slot-scope="{ scrollTop, isRefreshActive, isRefreshing }"
:scroll-top="scrollTop"
:is-refreshing="isRefreshing"
:is-refresh-active="isRefreshActive"
></md-scroll-view-refresh>
<div
v-for="i in list"
:key="i"
class="scroll-view-list"
>
<p class="scroll-view-item">{{i}}</p>
</div>
<md-scroll-view-more
slot="more"
:is-finished="isFinished"
>
</md-scroll-view-more>
</md-scroll-view>
</div>
</template>
确保.md-scroll-view
以某种方式获得高度,基本是由于兼容问题 导致外层容器没有高度
这个问题竟然真的有 今天项目上线 7p 的10.1.1版本 scrollView无法滚动
这个问题竟然真的有 今天项目上线 7p 的10.1.1版本 scrollView无法滚动
官方示例是否也存在同样的问题?
正在找出问题的手机 之前是用户反馈的 下午应该就拿到手机了 然后马上会尝试官网例子
操作系统:IOS10 浏览器:微信自带 scroll-view配置: ref="scrollView" :scrolling-x="false" :auto-reflow="true" 还有下拉刷新和滚动加载的事件, 在安卓手机和ios12中的微信浏览器一切正常, 但在ios10的微信浏览器中,scroll-view整个元素无法滚动,用手拖动时会和整个页面一起上下移动,没有出现相对的位置移动