From 7510df5f59e92aabc83da632f7359630e1a47fce Mon Sep 17 00:00:00 2001 From: YangYuQing Date: Thu, 31 Oct 2024 11:43:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=80=92=E8=AE=A1?= =?UTF-8?q?=E6=97=B6=E7=BB=84=E4=BB=B6=E6=A0=B7=E4=BE=8B=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=9A=84=E8=BF=90=E8=A1=8C=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 修复倒计时组件样例代码的运行错误 --- pages/componentsB/countDown/countDown.nvue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/componentsB/countDown/countDown.nvue b/pages/componentsB/countDown/countDown.nvue index acb3ab40..22af2779 100644 --- a/pages/componentsB/countDown/countDown.nvue +++ b/pages/componentsB/countDown/countDown.nvue @@ -25,7 +25,7 @@ > {{ timeData.days }} 天 - {{ timeData.hours>10?timeData.hours:'0'+timeData.hours}} 时 + {{ timeData.hours>10?timeData.hours:('0'+timeData.hours)}} 时 {{ timeData.minutes }} 分 {{ timeData.seconds }} 秒