之前用的是有赞的 SwipeCell 滑动单元格 ,但是列表数据超过20条 ,无论是PC还是真机页面都会卡死,后面发现有赞是用 setData 才会卡顿,然后动手用 wxs 写了一个,真香,代码片段 https://developers.weixin.qq.com/s/cIViG6mn75ss
//tag方法 滑动下一个,上一个自动复原
closePrevBox(){
if(wx.tempCqSwipeCell){
if(wx.tempCqSwipeCell != this){
wx.tempCqSwipeCell.setData({
prevBox:0
});
}
}
wx.tempCqSwipeCell = this;
}
具体可以引入代码片段看一下