feat: 新增工单列表

This commit is contained in:
duanshuwen
2025-10-16 21:05:39 +08:00
parent e6615da586
commit 29522fb4bc
16 changed files with 811 additions and 2 deletions

View File

@@ -0,0 +1,43 @@
.order-card {
transition: all 0.3s ease;
&:active {
transform: scale(0.98);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
}
.status-icon {
width: 20px;
height: 20px;
}
.status-tag {
&.tag-0 {
color: #ff3d60;
}
&.tag-1 {
color: #f00044;
}
&.tag-2 {
color: #40ae36;
}
&.tag-3 {
color: #808389;
}
&.tag-4 {
color: #2d91ff;
}
&.tag-5 {
color: #808389;
}
&.tag-6 {
color: #fd8702;
}
}