收藏
回答

ios上有个默认的下拉,我用了网格布局就没了,是因为用的网格布局吗?

ios上有个默认的下拉(不是下拉刷新),我用了网格布局就没了,是因为用的网格布局吗?要怎么改才能出现那个默认的下拉

回答关注问题邀请回答
收藏

4 个回答

  • 2020-09-16
     <scroll-view scroll-y="{{true}}" class="right">
                <view class="rightItem">
    <!--                <view class="subTitle" >{{item.title}}</view>-->
                    <view class="subList">
                        <view class="subItem" wx:for="{{category}}"  wx:key="index" bindtap="goodsDetail" data-item ="{{item}}">
                            <image src="{{item.ImageUrl}}" lazy-load="{{true}}"></image>
                            <view class="van-multi-ellipsis--l2">{{item.CategoryName}}</view>
                        </view>
                    </view>
                </view>
            </scroll-view>
    
    .right{
      width: calc(100% - 155rpx);
      padding: 26rpx 0 0 23rpx;
      position: fixed;
      top: 86rpx;
      left: 155rpx;
      margin: auto;
      bottom: 0;
      right: 0;
    }
    .rightItem{
      margin-bottom: 94rpx;
      padding-right: 45rpx;
    }
    .subTitle{
      height: 37rpx;
      line-height: 37rpx;
      padding-left: 36rpx;
      color: #333333;
      font-size: 26rpx;
      position: relative;
    }
    .subTitle::before{
      content: '';
      width: 16rpx;
      height: 16rpx;
      background: #FF5000;
      border-radius: 8rpx;
      position: absolute;
      left: 5rpx;
      transform: translateY(-50%);
      top: 50%;
    }
    .subList{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 57rpx;
      row-gap: 31rpx;
      padding-top: 13rpx;
    }
    .subItem{
      width: 140rpx;
      position: relative;
    }
    



    2020-09-16
    有用
    回复
  • 神经蛙
    神经蛙
    2020-09-16

    小程序,还是网页?相关代码让大家伙看看

    2020-09-16
    有用
    回复 1
    • 2020-09-16
      小程序的
      2020-09-16
      回复
  • .
    .
    2020-09-16

    贴出你写的代码。

    2020-09-16
    有用
    回复 4
    • 2020-09-16
      麻烦看下哦
      2020-09-16
      回复
    • .
      .
      2020-09-16回复
      scroll-view换成view试试?
      2020-09-16
      回复
    • 2020-09-16
      不行呀
      2020-09-16
      回复
    • .
      .
      2020-09-16回复
      为什么不行。。。万物都可supreme(-.-)
      2020-09-16
      回复
  • 微喵网络
    微喵网络
    2020-09-16

    弄一个 [ 能复现问题的简单的 ] 代码片段

    https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2020-09-16
    有用
    回复
登录 后发表内容
问题标签