小程序
小游戏
企业微信
微信支付
扫描小程序码分享
ios上有个默认的下拉(不是下拉刷新),我用了网格布局就没了,是因为用的网格布局吗?要怎么改才能出现那个默认的下拉
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<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; }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
小程序,还是网页?相关代码让大家伙看看
贴出你写的代码。
弄一个 [ 能复现问题的简单的 ] 代码片段
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<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; }
小程序,还是网页?相关代码让大家伙看看
贴出你写的代码。
弄一个 [ 能复现问题的简单的 ] 代码片段
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html