fix: 修复download页面的导航路由
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m57s

- 删除`文件下载`的导航链接
- 添加返回到`服务支持`与`文档资料`的链接
This commit is contained in:
2025-11-07 14:15:32 +08:00

View File

@ -19,7 +19,9 @@
const breadcrumbItems = [ const breadcrumbItems = [
{ label: $t('navigation.home'), to: localePath('/') }, { label: $t('navigation.home'), to: localePath('/') },
{ label: $t('navigation.downloads'), to: localePath('/downloads') }, { label: $t('navigation.support'), to: localePath('/support') },
{ label: $t('navigation.documents'), to: localePath('/support/documents') },
{ label: $t('navigation.downloads') },
]; ];
const id = route.params.id as string; const id = route.params.id as string;