refactor(frontend): split large reimbursement and audit modules

This commit is contained in:
caoxiaozhu
2026-05-21 23:53:03 +08:00
parent 2908dda024
commit f6f787ff38
53 changed files with 15637 additions and 14179 deletions

View File

@@ -106,7 +106,7 @@ router.beforeEach((to) => {
}
if (authActive && to.meta.requiresAuth) {
return checkBackendHealth().then((ok) => {
return checkBackendHealth({ allowStaleOnTimeout: true }).then((ok) => {
if (!ok && to.name !== 'backend-unavailable') {
return { name: 'backend-unavailable' }
}