From 4f55d860509654fd010c522a91fa6eb17d3d4212 Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 7 Jan 2026 03:10:50 -0800 Subject: [PATCH] =?UTF-8?q?feat(mobile-app):=20=E6=9B=B4=E6=96=B0=E5=AE=A2?= =?UTF-8?q?=E6=9C=8D=E8=81=94=E7=B3=BB=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 客服微信1: liulianhuanghou1 - 客服微信2: liulianhuanghou2 - 客服QQ1: 1502109619 - 客服QQ2: 2171447109 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../presentation/pages/profile_page.dart | 44 +++++++++++++------ 1 file changed, 31 insertions(+), 13 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 4e0efa69..3cac0248 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 @@ -4282,22 +4282,40 @@ class _ProfilePageState extends ConsumerState { ], ), const SizedBox(height: 24), - // QQ客服 - _buildContactItem( - icon: 'assets/icons/qq_icon.png', - iconFallback: Icons.chat_bubble, - label: 'QQ客服', - value: '123456789', - onCopy: () => _copyToClipboard('123456789', 'QQ号'), - ), - const SizedBox(height: 16), - // 微信客服 + // 微信客服1 _buildContactItem( icon: 'assets/icons/wechat_icon.png', iconFallback: Icons.message, - label: '微信客服', - value: 'durian_service', - onCopy: () => _copyToClipboard('durian_service', '微信号'), + label: '客服微信1', + value: 'liulianhuanghou1', + onCopy: () => _copyToClipboard('liulianhuanghou1', '微信号'), + ), + const SizedBox(height: 12), + // 微信客服2 + _buildContactItem( + icon: 'assets/icons/wechat_icon.png', + iconFallback: Icons.message, + label: '客服微信2', + value: 'liulianhuanghou2', + onCopy: () => _copyToClipboard('liulianhuanghou2', '微信号'), + ), + const SizedBox(height: 12), + // QQ客服1 + _buildContactItem( + icon: 'assets/icons/qq_icon.png', + iconFallback: Icons.chat_bubble, + label: '客服QQ1', + value: '1502109619', + onCopy: () => _copyToClipboard('1502109619', 'QQ号'), + ), + const SizedBox(height: 12), + // QQ客服2 + _buildContactItem( + icon: 'assets/icons/qq_icon.png', + iconFallback: Icons.chat_bubble, + label: '客服QQ2', + value: '2171447109', + onCopy: () => _copyToClipboard('2171447109', 'QQ号'), ), const SizedBox(height: 24), // 关闭按钮