perf(swipe-cell): avoid useless animate (#3928)

fix #3884
This commit is contained in:
rex 2020-12-31 17:05:49 +08:00 committed by GitHub
parent e500d6be5f
commit cd0fc68de6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,11 @@ VantComponent({
}
this.dragging = true;
ARRAY.filter((item) => item !== this).forEach((item) => item.close());
ARRAY.filter(
(item) => item !== this && item.offset !== 0
).forEach((item) => item.close());
this.setData({ catchMove: true });
this.swipeMove(this.startOffset + this.deltaX);
},