码迷,mamicode.com
首页 > 移动开发 > 详细

scroll-view 滚动在安卓机无效,在ios可以

时间:2020-07-20 15:33:50      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:pre   team   tab   ica   for   ati   ted   sel   cal   

 <scroll-view
        class="VerticalNav nav"
        scroll-y
        scroll-with-animation
        :scroll-top="verticalNavTop"
        style
      >
        <view
          class="cu-item"
          :class="item.id == selectedMid ? ‘text-green cur‘ : ‘‘"
          v-for="(item, index) in teamNamelist"
          :key="index"
          @tap="tabSelect(item.id, index)"
        >{{ item.name }}</view>
      </scroll-view>

样式发现

height: 100%; 是错误 的
    .VerticalNav.nav {
      width: 85px;
      white-space: initial;
      border-right: 1px solid rgba(195, 194, 196, 0.5);
      // height: 100%;高度计算
      height: calc(100vh - 95px);
}

 

scroll-view 滚动在安卓机无效,在ios可以

标签:pre   team   tab   ica   for   ati   ted   sel   cal   

原文地址:https://www.cnblogs.com/FACESCORE/p/13344823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!