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:
parent
cd938f4a34
commit
0cccc0e2cd
|
|
@ -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,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue