fix(mobile-app): 签署成功后跳转到"我的"页面

🤖 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-25 03:55:23 -08:00
parent 36e4e875bf
commit 82ca233d54
1 changed files with 2 additions and 7 deletions

View File

@ -344,13 +344,8 @@ class _ContractSigningPageState extends ConsumerState<ContractSigningPage> {
TextButton(
onPressed: () {
Navigator.of(context).pop(); //
//
if (context.canPop()) {
context.pop(true);
} else {
//
context.go('/');
}
// "我的"
context.go('/profile');
},
child: const Text('完成'),
),