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

View File

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