优化底部操作栏样式,调整布局和背景色,并在分类编辑页面添加安全距离
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 23s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 2s

This commit is contained in:
孙诚
2026-01-05 19:07:10 +08:00
parent 826f139fad
commit baa77341bc
5 changed files with 30 additions and 30 deletions

View File

@@ -163,6 +163,13 @@ public class TransactionPeriodicService(
.Where(d => d >= 1 && d <= 31)
.ToList();
// 如果当前为月末,且配置中有大于当月天数的日期,则也执行
var daysInMonth = DateTime.DaysInMonth(today.Year, today.Month);
if (today.Day == daysInMonth && executeDays.Any(d => d > daysInMonth))
{
return true;
}
return executeDays.Contains(today.Day);
}
@@ -175,7 +182,7 @@ public class TransactionPeriodicService(
return false;
// 计算当前是本季度的第几天
var quarterStartMonth = ((today.Month - 1) / 3) * 3 + 1;
var quarterStartMonth = (today.Month - 1) / 3 * 3 + 1;
var quarterStart = new DateTime(today.Year, quarterStartMonth, 1);
var daysSinceQuarterStart = (today - quarterStart).Days + 1;

View File

@@ -247,14 +247,27 @@
color: #51cf66;
}
/* 底部操作栏 */
.bottom-button {
position: fixed;
bottom: calc(16px + env(safe-area-inset-bottom, 0px));
left: 16px;
right: 16px;
bottom: 0;
left: 0;
right: 0;
display: flex;
gap: 12px;
padding: 12px;
background-color: var(--van-background-2, #fff);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
z-index: 100;
}
@media (prefers-color-scheme: dark) {
.bottom-button {
background-color: var(--van-background-2, #2c2c2c);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}
}
/* ===== 统一弹窗样式 ===== */
/* 弹窗容器 - 使用 flex 布局,确保标题固定,内容可滚动 */
.popup-container {

View File

@@ -58,12 +58,14 @@
</van-cell-group>
</div>
<!-- 底部安全距离 -->
<div style="height: calc(80px + env(safe-area-inset-bottom, 0px))"></div>
<div class="bottom-button">
<!-- 新增分类按钮 -->
<van-button
type="primary"
size="large"
round
icon="plus"
@click="handleAddCategory"
>

View File

@@ -27,7 +27,7 @@
</div>
<!-- 底部操作按钮 -->
<div class="action-bar">
<div class="bottom-button">
<van-button
type="primary"
:loading="classifying"
@@ -351,27 +351,6 @@ onMounted(async () => {
font-weight: 500;
}
/* 底部操作栏 */
.action-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
gap: 12px;
padding: 12px;
background-color: var(--van-background-2, #fff);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
z-index: 100;
}
@media (prefers-color-scheme: dark) {
.action-bar {
background-color: var(--van-background-2, #2c2c2c);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}
}
.action-btn {
flex: 1;
height: 44px;

View File

@@ -1,3 +1,2 @@
cd Web; pnpm i ;pnpm dev;
cd ../WebApi; dotnet watch run;
start cd ./Web/; pnpm i ;pnpm dev;
start cd ./WebApi/; dotnet watch run;