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( TextButton(
onPressed: () { onPressed: () {
Navigator.of(context).pop(); // Navigator.of(context).pop(); //
// // "我的"
if (context.canPop()) { context.go('/profile');
context.pop(true);
} else {
//
context.go('/');
}
}, },
child: const Text('完成'), child: const Text('完成'),
), ),