新增配置列表和配置新增页面

This commit is contained in:
2025-03-28 15:41:11 +08:00
parent 540618b8ca
commit afadd79fe8
16 changed files with 1608 additions and 473 deletions
+10 -6
View File
@@ -96,22 +96,26 @@
@apply flex items-center;
}
/* 状态标签 - 与status-badge.css重复,已注释
/* 状态标签 */
.status-badge {
@apply inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium;
@apply inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium;
}
.status-badge.status-success {
@apply bg-[rgba(0,104,74,0.1)] text-[#00684a];
@apply bg-green-100 text-green-900;
}
.status-badge.status-warning {
@apply bg-[rgba(250,173,20,0.1)] text-[#faad14];
@apply bg-yellow-100 text-yellow-900;
}
.status-badge.status-error {
@apply bg-[rgba(245,34,45,0.1)] text-[#f5222d];
} */
@apply bg-red-100 text-red-900;
}
.status-badge.status-processing {
@apply bg-blue-100 text-blue-900;
}
/* 卡片样式 */
.dashboard-card {