fix(ui): 修正"上线社区"为"上级社区"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-16 07:39:05 -08:00
parent f24b15b34e
commit dc42565ab8
1 changed files with 2 additions and 2 deletions

View File

@ -1437,7 +1437,7 @@ class _ProfilePageState extends ConsumerState<ProfilePage> {
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
// 线 //
Expanded( Expanded(
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@ -1446,7 +1446,7 @@ class _ProfilePageState extends ConsumerState<ProfilePage> {
const SizedBox(height: 12), const SizedBox(height: 12),
_buildInfoItem('所属社区', _community), _buildInfoItem('所属社区', _community),
const SizedBox(height: 12), const SizedBox(height: 12),
_buildInfoItem('线社区', _parentCommunity), _buildInfoItem('社区', _parentCommunity),
const SizedBox(height: 12), const SizedBox(height: 12),
_buildInfoItem('下级社区', _childCommunity), _buildInfoItem('下级社区', _childCommunity),
], ],