fix(Swipe): can't disable loop in some cases (#7208)

This commit is contained in:
neverland 2020-09-18 21:53:50 +08:00 committed by GitHub
parent deeff0bdec
commit d9e24286d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,8 +167,8 @@ export default createComponent({
this.rect = rect;
this.swiping = true;
this.active = active;
this.computedWidth = Math.round(+this.width || rect.width);
this.computedHeight = Math.round(+this.height || rect.height);
this.computedWidth = Math.floor(+this.width || rect.width);
this.computedHeight = Math.floor(+this.height || rect.height);
this.offset = this.getTargetOffset(active);
this.children.forEach((swipe) => {
swipe.offset = 0;