Compare commits
2 Commits
e47d5dd3f7
...
e2e529064f
| Author | SHA1 | Date |
|---|---|---|
|
|
e2e529064f | |
|
|
6e93dcdde3 |
|
|
@ -384,10 +384,13 @@ export default {
|
|||
// 关闭人数排行榜,显示金额排行榜
|
||||
closePeopleRanking() {
|
||||
this.showPeopleRanking = false
|
||||
// 延迟显示金额排行榜,让关闭动画完成
|
||||
setTimeout(() => {
|
||||
this.showAmountRanking = true
|
||||
}, 300)
|
||||
if (this.amountTopThree.length > 0) {
|
||||
setTimeout(() => {
|
||||
this.showAmountRanking = true
|
||||
}, 300)
|
||||
} else {
|
||||
this.$emit('onRankingComplete')
|
||||
}
|
||||
},
|
||||
|
||||
// 关闭金额排行榜
|
||||
|
|
|
|||
Loading…
Reference in New Issue