This commit is contained in:
lik
2026-05-29 20:30:42 +08:00
parent 659232cf77
commit 91ffaa62e7
28 changed files with 1270 additions and 98 deletions

View File

@@ -58,6 +58,7 @@
</view>
<view class="profile-footer">
<button class="profile-cancel-btn" bindtap="onClose">返回</button>
<button class="profile-save-btn" bindtap="onSave">保存</button>
</view>
</view>

View File

@@ -14,7 +14,6 @@
.profile-sheet {
background: #FFFFFF;
border-radius: 32rpx 32rpx 0 0;
padding-bottom: env(safe-area-inset-bottom);
animation: slideUp 0.3s ease;
max-height: 85vh;
overflow-y: auto;
@@ -125,7 +124,7 @@
}
.profile-sex-tag-active {
background: linear-gradient(135deg, #FF9B33 0%, #D4A853 100%);
background: linear-gradient(135deg, #D4A853 0%, #D4A853 100%);
}
.profile-sex-text {
@@ -140,10 +139,30 @@
.profile-footer {
padding: 4rpx 32rpx 48rpx;
flex-shrink: 0;
display: flex;
gap: 24rpx;
}
.profile-cancel-btn {
flex: 1;
background: #F5F5F5;
color: #666666;
font-size: 30rpx;
font-weight: 600;
padding: 28rpx;
border-radius: 20rpx;
border: none;
line-height: 1.5;
margin-top: 20rpx;
}
.profile-cancel-btn::after {
border: none;
}
.profile-save-btn {
background: linear-gradient(135deg, #FF9B33 0%, #D4A853 100%);
flex: 1;
background: linear-gradient(135deg, #6B8E7B 0%, #6B8E7B 100%);
color: #FFFFFF;
font-size: 30rpx;
font-weight: 600;
@@ -151,6 +170,7 @@
border-radius: 20rpx;
border: none;
line-height: 1.5;
margin-top: 20rpx;
}
.profile-save-btn::after {