弹窗需求

This commit is contained in:
2024-02-27 17:40:30 +08:00
parent c6c0dfdd11
commit 20f3c9cc20
32 changed files with 752 additions and 4310 deletions

View File

@@ -89,15 +89,19 @@ uni-button{
white-space: nowrap;
background: center / 100% 100% url(./static/images/button.png) no-repeat;
}
.confirm-button_cancle {
background: center / 100% 100% url(./static/images/button_cancle.png) no-repeat;
}
.confirm-button_disabled {
background: center / 100% 100% url(./static/images/button_disabled.png) no-repeat;
}
.table-title_wraper {
width: calc(100% - 60rpx);
margin: 0 auto;
font-size: 32rpx;
font-size: 36rpx;
color: #fff;
line-height: 70rpx;
font-family: 'YouSheBiaoTiHei';
padding: 30rpx 0 0 30rpx;
background: center / 100% 100% url(./static/images/bg-task-r1.png) no-repeat;
}
@@ -401,4 +405,54 @@ uni-button{
}
.bgr{
border-color: #ff6a00;
}
}
.modal{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
z-index: 2010;
}
.pop-wraper {
position: fixed;
bottom: 10%;
left: 10%;
width: 80%;
height: 80%;
padding: 1% 2%;
background: center / 100% 100% url(./static/images/pop_bg.png) no-repeat;
z-index: 2017;
transition: all .3s;
}
.pop-title {
font-size: 36rpx;
color: #fff;
font-family: 'YouSheBiaoTiHei';
line-height: 70rpx;
}
.pop-grid-wraper {
width: calc(100% - 60rpx);
height: calc(100% - 250rpx);
margin: 40rpx auto;
overflow-y: scroll;
}
.zd-pop-th-wraper {
background-color: #031328
}
.zd-pop-td {
background-color: RGBA(23, 123, 172, 0.4);
border-bottom: 2rpx solid #177BAC;
height: 100rpx;
font-size: 30rpx;
}
.pop-input {
width: 100%;
height: 70rpx;
line-height: 70rpx;
font-size: 28rpx;
color: #fff;
border: 2rpx solid #21D0F2;
border-radius: 24rpx
}