feat(ui): 更新应用品牌名称为 Out Live 并优化睡眠详情页默认数据展示

- 将 Sealife 更名为 Out Live(登录页、隐私弹窗)
- 睡眠详情页无数据时显示 "--" 替代固定默认值
- 移除睡眠阶段卡片中的质量标签与总览徽章
- 修复体重历史卡片依赖监听字段与跳转路由
- 调整喝水提醒后台任务时间范围为 8-21 点
- 标签栏按钮新增 activeOpacity=1 禁用点击透明度变化
This commit is contained in:
richarjiang
2025-09-12 09:59:01 +08:00
parent 1af0945a2f
commit a84c026599
7 changed files with 20 additions and 29 deletions

View File

@@ -40,7 +40,7 @@ async function executeWaterReminderTask(): Promise<void> {
// 检查时间限制(避免深夜打扰)
const currentHour = new Date().getHours();
if (currentHour < 9 || currentHour >= 21) {
if (currentHour < 8 || currentHour >= 21) {
console.log(`当前时间${currentHour}点,不在提醒时间范围内,跳过喝水提醒`);
return;
}