From afb770576e53b5ec308eebe820c2e8205fa89823 Mon Sep 17 00:00:00 2001 From: wangzimeng <3297159934@qq.com> Date: Thu, 7 Aug 2025 15:11:37 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E7=AD=BE=E5=88=B0=E7=9A=84=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E6=9B=B4=E6=94=B9=EF=BC=9A=E5=9C=A8=E6=89=93=E5=BC=80?= =?UTF-8?q?=E7=AD=BE=E5=88=B0=E6=88=90=E5=8A=9F=E7=9A=84=E5=BC=B9=E6=A1=86?= =?UTF-8?q?=E6=98=AF=E6=97=B6=E5=B0=B1=E8=B0=83=E6=8E=A5=E5=8F=A3=EF=BC=8C?= =?UTF-8?q?=E8=80=8C=E4=B8=8D=E6=98=AF=E5=9C=A8=E5=BC=B9=E6=A1=86=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4=E6=8C=89=E9=92=AE=E6=97=B6=E6=89=8D=E8=B0=83=E7=94=A8?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/app/sign.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pages/app/sign.vue b/pages/app/sign.vue index 5831640..80eaac6 100644 --- a/pages/app/sign.vue +++ b/pages/app/sign.vue @@ -293,18 +293,20 @@ if (code === 1) { state.showModel = true; state.signin = data; - // getData(); + getData(); } } function onShowRetroactive(e) { state.showRetroactive = true; state.date = e; + //暂时没有补签的活动,所以先于签到的逻辑保持一致 + getData(); } //签到确认刷新页面 function onConfirm() { state.showModel = false; - getData(); + // getData(); } //补签 async function onRetroactive() { @@ -316,7 +318,7 @@ }); if (code === 1) { state.showRetroactive = false; - getData(); + // getData(); } }