修复日程提醒功能

This commit is contained in:
2026-07-20 11:41:39 +08:00
parent 7ab6958538
commit f00ba9f9cc
19 changed files with 1735 additions and 1725 deletions
+26 -23
View File
@@ -379,9 +379,9 @@ onMounted(async () => {
.welcome-section {
margin-bottom: 16px;
padding: 32px;
background: linear-gradient(135deg, #3973ff 0%, #4f84ff 100%);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
box-shadow: 0 4px 12px rgba(6, 45, 163, 0.2);
box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
.welcome-content {
.welcome-title {
@@ -408,63 +408,65 @@ onMounted(async () => {
.stat-card {
background: var(--el-bg-color);
border-radius: 12px;
padding: 24px;
border-radius: 16px;
padding: 28px;
display: flex;
align-items: center;
gap: 16px;
gap: 20px;
border: 1px solid var(--el-border-color-lighter);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
transition: all 0.3s;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
&:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transform: translateY(-6px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
border-color: var(--el-color-primary-light-7);
}
.stat-icon-wrapper {
width: 56px;
height: 56px;
border-radius: 12px;
width: 60px;
height: 60px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
.el-icon {
color: #fff;
font-size: 28px;
}
}
&.income .stat-icon-wrapper {
background: linear-gradient(135deg, #3973ff 0%, #4f84ff 100%);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
&.users .stat-icon-wrapper {
background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
&.orders .stat-icon-wrapper {
background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
&.active .stat-icon-wrapper {
background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
&.knowledge .stat-icon-wrapper {
background: linear-gradient(135deg, #3973ff 0%, #4f84ff 100%);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
&.employees .stat-icon-wrapper {
background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
&.tenants .stat-icon-wrapper {
background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.stat-content {
@@ -692,15 +694,16 @@ onMounted(async () => {
align-items: center;
justify-content: center;
color: #fff;
font-weight: 500;
&.operation {
background-color: rgba(79, 132, 255, 0.2);
color: #4f84ff;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
}
&.access {
background-color: rgba(85, 190, 130, 0.2);
color: #55be82;
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
color: #fff;
}
}