feat: 更新生产环境配置,调整路由顺序,优化银行信息展示

This commit is contained in:
2025-12-22 03:40:28 +07:00
parent 88e2a97808
commit 23b9997bd3
4 changed files with 37 additions and 50 deletions

View File

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