下料抽查

This commit is contained in:
2026-07-06 18:23:35 +08:00
parent 52ac32ff95
commit 6ed757e75f
3 changed files with 142 additions and 24 deletions
+24
View File
@@ -1902,4 +1902,28 @@ $shadow-md: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
color: #b0bec5;
}
}
}
// ===== 不合格区域切换动画 =====
.fail-section {
max-height: 0;
overflow: hidden;
opacity: 0;
transform: translateY(-20rpx);
transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
&.is-visible {
max-height: 600rpx;
}
&.is-enter {
opacity: 1;
transform: translateY(0);
}
&.is-leave {
max-height: 0;
opacity: 0;
transform: translateY(-20rpx);
}
}