mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
7f2c9c1b58
commit
56c3f5529b
@ -25,16 +25,14 @@ export const transition = function(showDefaultValue: boolean) {
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
value: 'fade',
|
||||
observer: 'updateClasses'
|
||||
value: 'fade'
|
||||
}
|
||||
},
|
||||
|
||||
data: {
|
||||
type: '',
|
||||
inited: false,
|
||||
display: false,
|
||||
classNames: getClassNames('fade')
|
||||
display: false
|
||||
},
|
||||
|
||||
attached() {
|
||||
@ -52,14 +50,9 @@ export const transition = function(showDefaultValue: boolean) {
|
||||
}
|
||||
},
|
||||
|
||||
updateClasses(name: string) {
|
||||
this.set({
|
||||
classNames: getClassNames(name)
|
||||
});
|
||||
},
|
||||
|
||||
enter() {
|
||||
const { classNames, duration } = this.data;
|
||||
const { duration, name } = this.data;
|
||||
const classNames = getClassNames(name);
|
||||
const currentDuration = isObj(duration) ? duration.leave : duration;
|
||||
|
||||
this.status = 'enter';
|
||||
@ -88,7 +81,8 @@ export const transition = function(showDefaultValue: boolean) {
|
||||
},
|
||||
|
||||
leave() {
|
||||
const { classNames, duration } = this.data;
|
||||
const { duration, name } = this.data;
|
||||
const classNames = getClassNames(name);
|
||||
const currentDuration = isObj(duration) ? duration.leave : duration;
|
||||
|
||||
this.status = 'leave';
|
||||
|
@ -55,11 +55,16 @@ VantComponent({
|
||||
|
||||
observeClass() {
|
||||
const { transition, position } = this.data;
|
||||
this.updateClasses(transition || position);
|
||||
|
||||
const updateData: { [key: string]: any } = {
|
||||
name: transition || position
|
||||
};
|
||||
|
||||
if (transition === 'none') {
|
||||
this.set({ duration: 0 });
|
||||
updateData.duration = 0;
|
||||
}
|
||||
|
||||
this.set(updateData);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user