文件
jw-beauty/miniprogram/pages/profile/profile.wxss
T
Guoguo 71e4a487a5 fix: resolve subscription UX issues and add placeholder pages
- Profile: show "未订阅" card when subscription inactive/0 days
- Profile: subscription management navigates to page instead of modal
- Subscribe-plans: data-driven plan cards with mock payment flow
- Subscribe-plans: show current subscription status at top
- Subscribe-prompt: "先使用普通模式" goes to wear-check directly
- Add help and contact placeholder pages
- Fix unbindDevice to work without explicit deviceId
2026-04-29 07:00:36 -07:00

124 行
1.8 KiB
Plaintext

.user-row {
display: flex;
align-items: center;
gap: 20rpx;
padding: 24rpx;
background: linear-gradient(135deg, #E6508C 0%, #DCB982 100%);
border-radius: 24rpx;
margin-bottom: 24rpx;
}
.user-avatar {
width: 88rpx;
height: 88rpx;
background: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 44rpx;
flex-shrink: 0;
}
.user-name {
font-size: 32rpx;
font-weight: 600;
color: #ffffff;
}
.user-phone {
font-size: 24rpx;
color: rgba(255, 255, 255, 0.9);
}
.sub-card {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24rpx;
background: #ffffff;
border-radius: 20rpx;
margin-bottom: 24rpx;
border: 2rpx solid #DCB982;
}
.sub-left {
flex: 1;
}
.sub-name {
font-size: 26rpx;
color: #333333;
}
.sub-remain {
font-size: 24rpx;
color: #999999;
margin-top: 4rpx;
}
.menu-list {
background: #ffffff;
border-radius: 24rpx;
overflow: hidden;
}
.menu-item {
display: flex;
align-items: center;
padding: 24rpx;
border-bottom: 2rpx solid #f5f5f5;
}
.menu-item:last-child {
border-bottom: none;
}
.menu-icon {
width: 52rpx;
height: 52rpx;
background: #fdf2f8;
border-radius: 12rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 28rpx;
margin-right: 16rpx;
flex-shrink: 0;
}
.menu-text {
flex: 1;
font-size: 26rpx;
color: #333333;
}
.menu-arrow {
color: #cccccc;
font-size: 32rpx;
}
.menu-device-status {
font-size: 24rpx;
color: #52c41a;
margin-right: 8rpx;
}
.menu-device-unbound {
color: #999;
}
.sub-card-inactive {
background: #f5f5f5;
border: 1px dashed #d9d9d9;
}
.logout-btn {
text-align: center;
color: #ff4d4f;
font-size: 28rpx;
margin-top: 32rpx;
padding: 24rpx;
background: #ffffff;
border-radius: 24rpx;
}