feat: 新增提现法币路由,优化提现审批路由配置;在安全客户端中处理401错误,重置认证状态

This commit is contained in:
2025-12-22 03:13:58 +07:00
parent 0655cc2f5a
commit b29ec8f601
2 changed files with 18 additions and 12 deletions

View File

@@ -184,24 +184,26 @@ export const generatedRoutes: GeneratedRoute[] = [
order: 3
},
children: [
{
name: 'withdraw_approved',
path: '/withdraw/approved',
component: 'view.withdraw_approved',
meta: {
title: 'withdraw_approved',
i18nKey: 'route.withdraw_approved'
}
},
{
name: 'withdraw_fiat',
path: '/withdraw/fiat',
component: 'view.withdraw_fiat',
meta: {
title: 'withdraw_fiat',
i18nKey: 'route.withdraw_fiat'
}
}
i18nKey: 'route.withdraw_fiat',
order: 1
},
},
{
name: 'withdraw_approved',
path: '/withdraw/approved',
component: 'view.withdraw_approved',
meta: {
title: 'withdraw_approved',
i18nKey: 'route.withdraw_approved',
order: 2
},
},
]
}
];