This commit is contained in:
SunCheng
2026-02-15 10:10:28 +08:00
parent e51a3edd50
commit a88556c784
92 changed files with 6751 additions and 776 deletions

View File

@@ -146,16 +146,24 @@ watch(
)
const isShowAddBill = computed(() => {
return route.path === '/' || route.path === '/balance' || route.path === '/message' || route.path === '/calendar-v2'
return (
route.path === '/' ||
route.path === '/balance' ||
route.path === '/message' ||
route.path === '/calendar-v2'
)
})
// 需要显示底部导航栏的路由
const showNav = computed(() => {
return [
'/', '/statistics-v2',
'/',
'/statistics-v2',
'/calendar-v2',
'/balance', '/message',
'/budget-v2', '/setting'
'/balance',
'/message',
'/budget-v2',
'/setting'
].includes(route.path)
})