mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Transition): fix transition event sequence (#5699)
This commit is contained in:
parent
f2ff0e7b48
commit
19083a327c
@ -53,6 +53,7 @@ export function transition(showDefaultValue: boolean) {
|
||||
},
|
||||
|
||||
enter() {
|
||||
this.waitEnterEndPromise = new Promise((resolve) => {
|
||||
const { duration, name } = this.data;
|
||||
const classNames = getClassNames(name);
|
||||
const currentDuration = isObj(duration) ? duration.enter : duration;
|
||||
@ -85,11 +86,15 @@ export function transition(showDefaultValue: boolean) {
|
||||
|
||||
this.transitionEnded = false;
|
||||
this.setData({ classes: classNames['enter-to'] });
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
leave() {
|
||||
if (!this.waitEnterEndPromise) return;
|
||||
this.waitEnterEndPromise.then(() => {
|
||||
if (!this.data.display) {
|
||||
return;
|
||||
}
|
||||
@ -124,6 +129,7 @@ export function transition(showDefaultValue: boolean) {
|
||||
this.setData({ classes: classNames['leave-to'] });
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
onTransitionEnd() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user