Files
EmailBill/Web/src/App.vue

220 lines
5.4 KiB
Vue
Raw Normal View History

2025-12-25 11:20:56 +08:00
<template>
2026-01-23 17:14:41 +08:00
<van-config-provider
:theme="theme"
:theme-vars="themeVars"
2026-01-23 17:14:41 +08:00
class="app-provider"
>
2025-12-25 17:12:19 +08:00
<div class="app-root">
2026-02-02 16:59:24 +08:00
<router-view v-slot="{ Component }">
<keep-alive
:include="cachedViews"
:max="8"
>
<component
:is="Component"
:key="route.name"
/>
</keep-alive>
</router-view>
2026-02-11 17:05:18 +08:00
<!-- 底部导航栏全局统一 -->
<GlassBottomNav v-if="showNav" />
2026-01-23 17:14:41 +08:00
<GlobalAddBill
v-if="isShowAddBill"
@success="handleAddTransactionSuccess"
/>
<div
v-if="needRefresh"
class="update-toast"
@click="updateServiceWorker"
>
<van-icon
name="upgrade"
class="update-icon"
/>
2026-01-02 18:58:07 +08:00
<span>新版本可用点击刷新</span>
</div>
</div>
2025-12-25 11:20:56 +08:00
</van-config-provider>
</template>
<script setup>
import { RouterView, useRoute } from 'vue-router'
import { ref, onMounted, onUnmounted, computed, watch } from 'vue'
import { useMessageStore } from '@/stores/message'
import GlobalAddBill from '@/components/Global/GlobalAddBill.vue'
2026-02-11 17:05:18 +08:00
import GlassBottomNav from '@/components/GlassBottomNav.vue'
2025-12-26 17:29:17 +08:00
import '@/styles/common.css'
2026-02-11 16:09:04 +08:00
import { needRefresh, updateServiceWorker } from './registerServiceWorker'
2025-12-25 11:20:56 +08:00
const messageStore = useMessageStore()
2026-02-02 16:59:24 +08:00
// 定义需要缓存的页面组件名称
const cachedViews = ref([
'CalendarV2', // 日历V2页面
'StatisticsView', // 统计页面
2026-02-09 19:25:51 +08:00
'StatisticsV2View', // 统计V2页面
2026-02-02 16:59:24 +08:00
'BalanceView', // 账单页面
2026-02-13 22:49:07 +08:00
'BudgetV2View' // 预算V2页面
2026-02-02 16:59:24 +08:00
])
2025-12-25 17:30:29 +08:00
const updateVh = () => {
2025-12-25 17:20:50 +08:00
const vh = window.innerHeight
document.documentElement.style.setProperty('--vh', `${vh}px`)
}
// 修复 PWA 模式下键盘收起页面不回弹的问题
const handleFocusOut = () => {
if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) {
// 延迟一小段时间执行,确保键盘收起动作已开始
setTimeout(() => {
// 强制回到顶部
window.scrollTo(0, 0)
// 同时也触发一次高度更新
updateVh()
}, 100)
}
}
onMounted(() => {
2025-12-25 17:30:29 +08:00
updateVh()
window.addEventListener('resize', updateVh)
2025-12-25 17:20:50 +08:00
if (window.visualViewport) {
2025-12-25 17:30:29 +08:00
window.visualViewport.addEventListener('resize', updateVh)
2025-12-25 17:20:50 +08:00
}
// 注册全局失去焦点监听
document.addEventListener('focusout', handleFocusOut)
})
onUnmounted(() => {
2025-12-25 17:30:29 +08:00
window.removeEventListener('resize', updateVh)
2025-12-25 17:20:50 +08:00
if (window.visualViewport) {
2025-12-25 17:30:29 +08:00
window.visualViewport.removeEventListener('resize', updateVh)
2025-12-25 17:20:50 +08:00
}
// 销毁监听
document.removeEventListener('focusout', handleFocusOut)
})
2025-12-25 16:44:34 +08:00
const route = useRoute()
2025-12-25 11:20:56 +08:00
const theme = ref('light')
// Vant UI 主题变量映射
const themeVars = computed(() => {
const vars = {
navBarBackground: 'var(--bg-primary)',
navBarTextColor: 'var(--text-primary)',
cardBackground: 'var(--bg-secondary)',
cellBackground: 'var(--bg-secondary)',
background: 'var(--bg-primary)',
background2: 'var(--bg-secondary)',
textColor: 'var(--text-primary)',
textColor2: 'var(--text-secondary)',
borderColor: 'var(--bg-tertiary)',
tabbarBackground: 'var(--bg-primary)'
}
return vars
})
2025-12-25 11:20:56 +08:00
// 检测系统深色模式
const updateTheme = () => {
const isDark = window.matchMedia('(prefers-color-scheme: dark)').matches
theme.value = isDark ? 'dark' : 'light'
2026-02-02 16:59:24 +08:00
// 在文档根元素上设置 data-theme 属性,使 CSS 变量生效
document.documentElement.setAttribute('data-theme', theme.value)
2025-12-25 11:20:56 +08:00
}
// 监听系统主题变化
let mediaQuery
onMounted(() => {
updateTheme()
mediaQuery = window.matchMedia('(prefers-color-scheme: dark)')
mediaQuery.addEventListener('change', updateTheme)
})
setInterval(() => {
messageStore.updateUnreadCount()
}, 60 * 1000) // 每60秒更新一次未读消息数
2025-12-27 11:50:12 +08:00
// 监听路由变化调整
2026-01-16 11:15:44 +08:00
watch(
() => route.path,
2026-02-11 16:09:04 +08:00
() => {
2026-01-16 11:15:44 +08:00
messageStore.updateUnreadCount()
}
)
2025-12-27 11:50:12 +08:00
2026-01-03 11:26:50 +08:00
const isShowAddBill = computed(() => {
return route.path === '/' || route.path === '/balance' || route.path === '/message' || route.path === '/calendar-v2'
2026-01-03 11:26:50 +08:00
})
2026-02-11 17:05:18 +08:00
// 需要显示底部导航栏的路由
const showNav = computed(() => {
return [
'/', '/statistics-v2',
'/calendar-v2',
2026-02-11 17:05:18 +08:00
'/balance', '/message',
'/budget-v2', '/setting'
2026-02-11 17:05:18 +08:00
].includes(route.path)
})
2025-12-25 11:20:56 +08:00
onUnmounted(() => {
if (mediaQuery) {
mediaQuery.removeEventListener('change', updateTheme)
}
})
const handleAddTransactionSuccess = () => {
// 当添加交易成功时,通知当前页面刷新数据
const event = new Event('transactions-changed')
window.dispatchEvent(event)
}
2025-12-25 11:20:56 +08:00
</script>
2025-12-25 14:15:43 +08:00
<style scoped>
2025-12-25 17:12:19 +08:00
.app-provider {
2025-12-25 17:20:50 +08:00
/* 使用准确的视口高度 CSS 变量 */
height: var(--vh, 100vh);
width: 100%;
2026-02-04 16:23:12 +08:00
background-color: var(--van-background);
2025-12-25 17:12:19 +08:00
}
.app-root {
height: 100%;
2025-12-25 17:20:50 +08:00
width: 100%;
position: relative;
padding-top: max(0px, calc(env(safe-area-inset-top, 0px) * 0.75));
box-sizing: border-box;
2026-02-11 16:09:04 +08:00
overflow: hidden;
2026-02-04 16:23:12 +08:00
background-color: var(--van-background);
2025-12-25 17:20:50 +08:00
}
2026-01-02 18:58:07 +08:00
.update-toast {
position: fixed;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
background-color: var(--van-primary-color);
color: white;
padding: 10px 20px;
border-radius: 24px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 2000;
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.update-toast:active {
transform: translateX(-50%) scale(0.95);
}
.update-icon {
font-size: 18px;
}
2025-12-25 14:15:43 +08:00
</style>