下料抽查
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user