下载记录、钱包账单添加加载更多;监听键盘高度优化样式

This commit is contained in:
2025-10-01 08:10:01 +08:00
parent a06487ecdc
commit 1b05bd1da7
10 changed files with 140 additions and 63 deletions

View File

@@ -16,6 +16,8 @@ export const convert_db_gender_to_display = (db_gender: string): string => {
return '男';
case '1':
return '女';
case '2':
return '保密';
default:
return '未知';
}
@@ -32,6 +34,8 @@ export const convert_display_gender_to_db = (display_gender: string): string =>
return '0';
case '女':
return '1';
case '保密':
return '2';
default:
return '0'; // 默认返回男性
}