样式调整
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 12s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s

This commit is contained in:
孙诚
2025-12-26 18:03:52 +08:00
parent 5e23c38df4
commit ed0fbb1930
11 changed files with 53 additions and 7 deletions

View File

@@ -59,9 +59,4 @@ html, body, #app {
margin: 0; margin: 0;
padding: 0; padding: 0;
height: 100%; height: 100%;
}
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background-color: transparent;
} }

View File

@@ -178,6 +178,7 @@ const startAnalysis = async () => {
scrollToBottom() scrollToBottom()
} }
} catch (e) { } catch (e) {
console.error('JSON解析错误:', e)
// 忽略JSON解析错误 // 忽略JSON解析错误
} }
} }
@@ -379,4 +380,9 @@ const startAnalysis = async () => {
color: #ffc107; color: #ffc107;
} }
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -259,4 +259,9 @@ fetchDailyStatistics(now.getFullYear(), now.getMonth() + 1);
font-size: 14px; font-size: 14px;
color: #969799; color: #969799;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -512,4 +512,9 @@ onMounted(() => {
:deep(.van-cell-group--inset) { :deep(.van-cell-group--inset) {
margin: 16px; margin: 16px;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -333,4 +333,9 @@ onMounted(() => {
background: #1a1a1a; background: #1a1a1a;
} }
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -358,4 +358,9 @@ const handleSubmit = async () => {
font-size: 20px; font-size: 20px;
cursor: pointer; cursor: pointer;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -140,7 +140,7 @@ const startClassify = async () => {
return return
} }
const toast = showLoadingToast({ showLoadingToast({
message: '智能分类中...', message: '智能分类中...',
forbidClick: true, forbidClick: true,
duration: 0 duration: 0
@@ -284,7 +284,7 @@ const saveClassifications = async () => {
return return
} }
const toast = showLoadingToast({ showLoadingToast({
message: '保存中...', message: '保存中...',
forbidClick: true, forbidClick: true,
duration: 0 duration: 0
@@ -375,4 +375,9 @@ onMounted(() => {
flex: 1; flex: 1;
height: 44px; height: 44px;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -469,4 +469,9 @@ onMounted(() => {
.delete-button { .delete-button {
height: 100%; height: 100%;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -174,4 +174,9 @@ const handleLogout = async () => {
color: #969799; color: #969799;
font-weight: normal; font-weight: normal;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -1103,4 +1103,9 @@ onActivated(() => {
} }
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>

View File

@@ -562,4 +562,9 @@ onMounted(async () => {
.toolbar-confirm { .toolbar-confirm {
margin-left: auto; margin-left: auto;
} }
/* 设置页面容器背景色 */
:deep(.van-nav-bar) {
background: transparent !important;
}
</style> </style>