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() {
|
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()
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user