拜访区域支持多选,被访人改为输入框,取消拜访区域和被访人的联动

This commit is contained in:
chenglijuan
2026-05-27 15:44:23 +08:00
parent 643f37b06e
commit 12c2f25797
3 changed files with 120 additions and 92 deletions
+70
View File
@@ -123,6 +123,76 @@ page {
color: #b8c9db;
}
.form-input-disabled {
color: #999;
}
.form-group-area {
flex-wrap: wrap;
}
.multi-select-wrap {
position: relative;
flex: 1;
}
.multi-select-trigger {
display: flex;
align-items: center;
justify-content: space-between;
height: 88rpx;
}
.multi-select-dropdown {
position: absolute;
top: 88rpx;
left: 0;
right: 0;
background: #fff;
border: 1rpx solid #e8eef5;
border-radius: 12rpx;
box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.1);
z-index: 100;
padding: 8rpx 0;
}
.checkbox-item {
display: flex;
align-items: center;
padding: 20rpx 24rpx;
}
.checkbox {
width: 40rpx;
height: 40rpx;
border: 2rpx solid #d0d8e4;
border-radius: 8rpx;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16rpx;
flex-shrink: 0;
}
.checkbox-checked {
background: #5b9bd5;
border-color: #5b9bd5;
}
.checkbox-icon {
color: #fff;
font-size: 24rpx;
}
.checkbox-label {
font-size: 28rpx;
color: #2c3e50;
}
.arrow-up {
transform: rotate(90deg);
}
.submit-wrap {
position: fixed;
bottom: 0;