From ae505396cb15785dead0e4b7ad5a2552a528372d Mon Sep 17 00:00:00 2001 From: hebingchang Date: Fri, 7 Feb 2020 10:03:25 +0800 Subject: [PATCH] fix: statistic countdown not trigger "finish" event (#1731) * fix: fix the "finish" event of statistic countdown * fix: update the fix of "finish" event of statistic countdown * fix: update the fix of "finish" event of statistic countdown --- components/statistic/Countdown.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/statistic/Countdown.jsx b/components/statistic/Countdown.jsx index 98d7793d2..e333e61e6 100644 --- a/components/statistic/Countdown.jsx +++ b/components/statistic/Countdown.jsx @@ -48,6 +48,7 @@ export default { if (this.countdownId) return; this.countdownId = window.setInterval(() => { this.$refs.statistic.$forceUpdate(); + this.syncTimer(); }, REFRESH_INTERVAL); },