fix(collapse): fix typo error (#3403)

This commit is contained in:
rex 2020-07-17 16:20:59 +08:00 committed by GitHub
parent c304655dc9
commit 85fd5e68e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ VantComponent({
}, },
created() { created() {
this.animate = wx.createAnimation({ this.animation = wx.createAnimation({
duration: 0, duration: 0,
timingFunction: 'ease-in-out' timingFunction: 'ease-in-out'
}); });
@ -76,10 +76,10 @@ VantComponent({
rect.height rect.height
) )
.then((height: number) => { .then((height: number) => {
const { animate } = this; const { animation } = this;
if (expanded) { if (expanded) {
animate animation
.height(height) .height(height)
.top(1) .top(1)
.step({ .step({
@ -89,12 +89,12 @@ VantComponent({
.step(); .step();
this.setData({ this.setData({
animate: this.animate.export() animation: animation.export()
}); });
return; return;
} }
animate animation
.height(height) .height(height)
.top(0) .top(0)
.step({ duration: 1 }) .step({ duration: 1 })
@ -104,7 +104,7 @@ VantComponent({
}); });
this.setData({ this.setData({
animate: this.animate.export() animation: animation.export()
}); });
}); });
}, },

View File

@ -33,7 +33,7 @@
<view <view
class="{{ utils.bem('collapse-item__wrapper') }}" class="{{ utils.bem('collapse-item__wrapper') }}"
style="height: 0;" style="height: 0;"
animation="{{ animate }}" animation="{{ animation }}"
> >
<view <view
class="van-collapse-item__content content-class" class="van-collapse-item__content content-class"