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(); } }