From ddeb3f227ab04cb0cf9b901ca2ae5bab12094116 Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 22 Dec 2025 06:38:21 -0800 Subject: [PATCH] =?UTF-8?q?fix(mobile-app):=20=E7=A4=BE=E5=8C=BA=E6=9D=83?= =?UTF-8?q?=E7=9B=8A=E8=80=83=E6=A0=B8=E4=BB=85=E5=9C=A8=E6=9C=89=E7=A4=BE?= =?UTF-8?q?=E5=8C=BA=E6=8E=88=E6=9D=83=E6=97=B6=E6=98=BE=E7=A4=BA?= 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 --- .../features/profile/presentation/pages/profile_page.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 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 5e8dfdfe..094876ec 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 @@ -1822,9 +1822,11 @@ class _ProfilePageState extends ConsumerState { const SizedBox(height: 16), // 分享邀请按钮 _buildShareButton(), - const SizedBox(height: 16), - // 社区权益考核 - _buildCommunityAssessment(), + // 社区权益考核(仅在有社区授权时显示) + if (_hasCommunityAuth) ...[ + const SizedBox(height: 16), + _buildCommunityAssessment(), + ], // 市团队权益考核 if (_hasAuthCityCompanyAuth) ...[ const SizedBox(height: 16),