refactor(mining-app): rename VIP等级 to 团队上级 and 直推人数 to 引荐人数

- Changed "VIP等级" label to "团队上级" in profile stats row
- Changed display value from vipLevel (V3 format) to unlockedBonusTiers (raw number)
- Changed "直推人数" label to "引荐人数" for consistency

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-14 20:07:52 -08:00
parent cd938f4a34
commit 0cccc0e2cd
1 changed files with 3 additions and 3 deletions

View File

@ -252,7 +252,7 @@ class ProfilePage extends ConsumerWidget {
), ),
_buildDivider(), _buildDivider(),
_buildStatItem( _buildStatItem(
'直推人数', '引荐人数',
stats?.directReferralAdoptedCount.toString() ?? '0', stats?.directReferralAdoptedCount.toString() ?? '0',
isLoading, isLoading,
), ),
@ -264,8 +264,8 @@ class ProfilePage extends ConsumerWidget {
), ),
_buildDivider(), _buildDivider(),
_buildStatItem( _buildStatItem(
'VIP等', '团队上',
stats?.vipLevel ?? '-', stats?.unlockedBonusTiers.toString() ?? '0',
isLoading, isLoading,
), ),
], ],