呼叫套轴、分切上料2改

This commit is contained in:
2026-09-01 16:11:22 +08:00
parent f7a69256b1
commit 42f41be3e0
6 changed files with 217 additions and 32 deletions

View File

@@ -979,4 +979,117 @@ uni-button[disabled]:not([type]) {
to {
transform: rotate(360deg);
}
}
.confirm-modal-mask {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.7);
z-index: 999;
}
.confirm-modal {
width: 86%;
background: #fff;
border-radius: 20rpx;
padding-top: 40rpx;
animation: modalSlideIn 0.3s ease-out;
}
.icon_right {
text-align: center;
font-size: 40rpx;
line-height: 40rpx;
color: #f36b2a;
border-radius: 50%;
padding: 18rpx;
margin-bottom: 16rpx;
background-color: #fff3eb;
}
.confirm-modal .modal-title {
font-size: 30rpx;
text-align: center;
font-weight: 700;
color: #23272f;
padding: 0 18rpx;
margin-bottom: 12rpx;
}
.confirm-modal .modal-desc {
font-size: 24rpx;
color: #323232;
text-align: center;
padding: 0 18rpx;
margin-bottom: 32rpx;
}
.confirm-modal .info-block {
width: 90%;
background-color: #f5f5f5;
border-radius: 12rpx;
padding: 16rpx;
margin: 0 auto 36rpx;
}
.confirm-modal .info-row {
display: flex;
padding-bottom: 20rpx;
margin-bottom: 16rpx;
border-bottom: 1px solid #e5e5e5;
}
.confirm-modal .info-row:last-child {
margin-bottom: 0;
border-bottom: 0;
}
.confirm-modal .info-row .info-label {
width: 140rpx;
font-size: 28rpx;
color: #7b8491;
}
.confirm-modal .info-row .info-val {
flex: 1;
font-size: 28rpx;
font-weight: 700;
color: #23272f;
text-align: right;
}
.confirm-modal .info-row .info-val-q {
font-size: 34rpx;
color: #f36b2a;
}
.confirm-modal .modal-buttons {
display: flex;
width: 100%;
}
.confirm-modal .modal-buttons button {
flex: 1;
width: 50%;
height: 88rpx;
line-height: 88rpx;
border-top-left-radius: 0;
border-top-right-radius: 0;
font-size: 30rpx;
margin: 0;
}
/* */
.confirm-modal .btn-cancel {
background: #fff;
color: #333;
border: 1px solid #e5e5e5;
border-bottom-left-radius: 20rpx;
}
/* */
.confirm-modal .btn-confirm {
background: #ff791a;
border: 1px solid #ff791a;
color: #fff;
border-bottom-right-radius: 20rpx;
}
/* */
@keyframes modalSlideIn {
0% {
transform: translateY(100vh);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}

View File

@@ -53,6 +53,11 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
.jccenter {
justify-content: center !important;
}
.flex-column {
display: flex;
flex-direction: column;
align-items: center;
}
.zd-row {
display: flex;
justify-content: space-between;