From 0cccc0e2cd1e24de327855f79c7e6147ccdfefb5 Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 14 Jan 2026 20:07:52 -0800 Subject: [PATCH] =?UTF-8?q?refactor(mining-app):=20rename=20VIP=E7=AD=89?= =?UTF-8?q?=E7=BA=A7=20to=20=E5=9B=A2=E9=98=9F=E4=B8=8A=E7=BA=A7=20and=20?= =?UTF-8?q?=E7=9B=B4=E6=8E=A8=E4=BA=BA=E6=95=B0=20to=20=E5=BC=95=E8=8D=90?= =?UTF-8?q?=E4=BA=BA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .../lib/presentation/pages/profile/profile_page.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart b/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart index 89679d4c..25649541 100644 --- a/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart +++ b/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart @@ -252,7 +252,7 @@ class ProfilePage extends ConsumerWidget { ), _buildDivider(), _buildStatItem( - '直推人数', + '引荐人数', stats?.directReferralAdoptedCount.toString() ?? '0', isLoading, ), @@ -264,8 +264,8 @@ class ProfilePage extends ConsumerWidget { ), _buildDivider(), _buildStatItem( - 'VIP等级', - stats?.vipLevel ?? '-', + '团队上级', + stats?.unlockedBonusTiers.toString() ?? '0', isLoading, ), ],