diff --git a/frontend/mobile-app/lib/features/authorization/presentation/widgets/user_profile_dialog.dart b/frontend/mobile-app/lib/features/authorization/presentation/widgets/user_profile_dialog.dart index 90fa3809..9f75d168 100644 --- a/frontend/mobile-app/lib/features/authorization/presentation/widgets/user_profile_dialog.dart +++ b/frontend/mobile-app/lib/features/authorization/presentation/widgets/user_profile_dialog.dart @@ -240,7 +240,7 @@ class _UserProfilePageState extends ConsumerState { _buildInfoCard( title: '基本信息', children: [ - _buildInfoRow('用户ID', profile.accountSequence), + // _buildInfoRow('用户ID', profile.accountSequence), // 暂时隐藏 _buildInfoRow('注册时间', _formatDate(profile.registeredAtDateTime)), if (profile.inviterNickname != null) _buildInfoRow('引荐人', profile.inviterNickname!), @@ -390,24 +390,26 @@ class _UserProfilePageState extends ConsumerState { ), child: Row( children: [ - _buildStatItem( - label: '引荐', - value: '${profile.directReferralCount}', - color: const Color(0xFF4CAF50), - ), - _buildStatDivider(), - _buildStatItem( - label: '同伴', - value: '${profile.umbrellaUserCount}', - color: const Color(0xFF2196F3), - ), - _buildStatDivider(), - _buildStatItem( - label: '本人认种', - value: '${profile.personalPlantingCount}', - color: const Color(0xFF8BC34A), - ), - _buildStatDivider(), + // --- 以下字段暂时隐藏 --- + // _buildStatItem( + // label: '引荐', + // value: '${profile.directReferralCount}', + // color: const Color(0xFF4CAF50), + // ), + // _buildStatDivider(), + // _buildStatItem( + // label: '同伴', + // value: '${profile.umbrellaUserCount}', + // color: const Color(0xFF2196F3), + // ), + // _buildStatDivider(), + // _buildStatItem( + // label: '本人认种', + // value: '${profile.personalPlantingCount}', + // color: const Color(0xFF8BC34A), + // ), + // _buildStatDivider(), + // --- 以上字段暂时隐藏 --- _buildStatItem( label: '同伴认种', value: '${profile.teamPlantingCount}',