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:
parent
36e4e875bf
commit
82ca233d54
|
|
@ -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('完成'),
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue