feat(SwipeCell): support mutual exclusion

fix #1889
This commit is contained in:
rex 2019-09-29 11:32:59 +08:00 committed by GitHub
parent ee3bf31ff2
commit b7296af46f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ import { touch } from '../mixins/touch';
import { Weapp } from 'definitions/weapp';
const THRESHOLD = 0.3;
let ARRAY: WechatMiniprogram.Component.TrivialInstance[] = [];
VantComponent({
props: {
@ -30,6 +31,11 @@ VantComponent({
created() {
this.offset = 0;
ARRAY.push(this);
},
destroyed() {
ARRAY = ARRAY.filter(item => item !== this);
},
methods: {
@ -80,6 +86,12 @@ VantComponent({
return;
}
ARRAY.forEach(item => {
if (item !== this) {
item.close();
}
});
this.draging = true;
this.startOffset = this.offset;
this.firstDirection = '';