修复多个问题 + 更新部署配置

## 修复
1. 我的页面:简化头像/昵称UI布局
2. 提现API:增加容错处理,自动创建表
3. 找伙伴:放宽匹配条件,匹配所有注册用户

## 部署
1. 更新.cursorrules为小型宝塔配置
2. 服务器IP: 42.194.232.22
This commit is contained in:
卡若
2026-01-29 13:04:38 +08:00
parent 051f064707
commit 174253584f
5 changed files with 127 additions and 85 deletions

View File

@@ -77,9 +77,8 @@
height: 120rpx;
}
/* 头像按钮样式 */
.avatar-wrapper-btn {
position: relative;
/* 头像按钮样式 - 简化版 */
.avatar-btn-simple {
flex-shrink: 0;
width: 120rpx;
height: 120rpx;
@@ -88,18 +87,26 @@
background: transparent;
border: none;
line-height: normal;
border-radius: 50%;
overflow: visible;
}
.avatar-wrapper-btn::after { border: none; }
.avatar-btn-simple::after { border: none; }
/* 昵称输入框 */
.nickname-input {
flex: 1;
/* 用户名样式 */
.user-name {
font-size: 32rpx;
font-weight: 600;
color: #fff;
background: transparent;
padding: 8rpx 0;
min-width: 0;
max-width: 300rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.edit-icon-small {
font-size: 24rpx;
color: rgba(255,255,255,0.5);
margin-left: 12rpx;
}
.avatar {