hookehuyr

refactor(WeRunAuth): 移除同步步数时的Toast提示

避免在同步步数时频繁显示Toast干扰用户,仅在必要时通过emit通知父组件
......@@ -193,11 +193,11 @@ const getWeRunData = async () => {
showManualUpdate.value = true;
emit('sync-failed', { showManualUpdate: true });
}
Taro.showToast({
title: msg || '同步步数中',
icon: 'none',
duration: 2000
});
// Taro.showToast({
// title: msg || '同步步数中',
// icon: 'none',
// duration: 2000
// });
}
} catch (apiError) {
console.error('同步微信步数API调用失败:', apiError);
......