diff --git a/frontend/mobile-app/lib/features/authorization/presentation/pages/authorization_apply_page.dart b/frontend/mobile-app/lib/features/authorization/presentation/pages/authorization_apply_page.dart index 2842a483..6733a78b 100644 --- a/frontend/mobile-app/lib/features/authorization/presentation/pages/authorization_apply_page.dart +++ b/frontend/mobile-app/lib/features/authorization/presentation/pages/authorization_apply_page.dart @@ -854,6 +854,11 @@ class _AuthorizationApplyPageState /// 构建授权类型选择 Widget _buildAuthorizationTypes() { + // 暂时隐藏省团队申请选项,未来需要时取消注释恢复 + final availableTypes = AuthorizationType.values + .where((type) => type != AuthorizationType.provinceTeam) + .toList(); + return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ @@ -867,7 +872,8 @@ class _AuthorizationApplyPageState ), ), const SizedBox(height: 12), - ...AuthorizationType.values.map((type) => _buildTypeItem(type)), + // 原代码: ...AuthorizationType.values.map((type) => _buildTypeItem(type)), + ...availableTypes.map((type) => _buildTypeItem(type)), ], ); }