Compare commits

...

2 Commits

Author SHA1 Message Date
191459ec5c fix: 修复download页面的导航路由
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m57s
- 删除`文件下载`的导航链接
- 添加返回到`服务支持`与`文档资料`的链接
2025-11-07 14:15:32 +08:00
881c0ab61e fix: 修正download页面的breadcrumb导航
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m50s
- 增添返回到服务支持与文档资料的链接
2025-11-07 13:40:17 +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;