From 2b5b80d29996b23d2caa9e183e6bf6b80ab6d586 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 27 Dec 2025 09:33:25 -0800 Subject: [PATCH] =?UTF-8?q?refactor(mobile-app):=20=E4=BF=AE=E6=94=B9"?= =?UTF-8?q?=E6=88=91=E7=9A=84"=E9=A1=B5=E9=9D=A2=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "直推人数" → "引荐" - "个人种植数" → "个人种植树" - "团队种植数" → "团队种植树" - "直推列表" → "引荐列表" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../profile/presentation/pages/profile_page.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart index 3b47bc99..703b426e 100644 --- a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart +++ b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart @@ -3216,7 +3216,7 @@ class _ProfilePageState extends ConsumerState { child: Column( children: [ const Text( - '直推人数', + '引荐', style: TextStyle( fontSize: 12, fontFamily: 'Inter', @@ -3257,7 +3257,7 @@ class _ProfilePageState extends ConsumerState { child: Column( children: [ const Text( - '个人种植数', + '个人种植树', style: TextStyle( fontSize: 12, fontFamily: 'Inter', @@ -3300,7 +3300,7 @@ class _ProfilePageState extends ConsumerState { child: Column( children: [ const Text( - '团队种植数', + '团队种植树', style: TextStyle( fontSize: 12, fontFamily: 'Inter', @@ -3331,7 +3331,7 @@ class _ProfilePageState extends ConsumerState { ); } - /// 构建直推列表 + /// 构建引荐列表 Widget _buildReferralList() { return Column( crossAxisAlignment: CrossAxisAlignment.start, @@ -3339,7 +3339,7 @@ class _ProfilePageState extends ConsumerState { const Padding( padding: EdgeInsets.only(top: 8), child: Text( - '直推列表', + '引荐列表', style: TextStyle( fontSize: 16, fontFamily: 'Inter',