mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(collapse): fix typo error (#3403)
This commit is contained in:
parent
c304655dc9
commit
85fd5e68e8
@ -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()
|
||||
});
|
||||
});
|
||||
},
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user