麵包屑點擊問題修正
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Has been skipped
Koori-ERP-Deploy-System / deploy-production (push) Successful in 51s

This commit is contained in:
2026-01-07 13:12:07 +08:00
parent 8ea1ce1515
commit 19c60a6126
2 changed files with 13 additions and 7 deletions

View File

@@ -11,22 +11,22 @@ export const BREADCRUMB_MAP: Record<string, BreadcrumbItemType[]> = {
products: [
{ label: "首頁", href: "/" },
{ label: "商品與庫存管理" },
{ label: "商品資料管理", isPage: true }
{ label: "商品資料管理", href: "/products", isPage: true }
],
warehouses: [
{ label: "首頁", href: "/" },
{ label: "商品與庫存管理" },
{ label: "倉庫管理", isPage: true }
{ label: "倉庫管理", href: "/warehouses", isPage: true }
],
vendors: [
{ label: "首頁", href: "/" },
{ label: "廠商管理" },
{ label: "廠商資料管理", isPage: true }
{ label: "廠商資料管理", href: "/vendors", isPage: true }
],
purchaseOrders: [
{ label: "首頁", href: "/" },
{ label: "採購管理" },
{ label: "管理採購單", isPage: true }
{ label: "管理採購單", href: "/purchase-orders", isPage: true }
],
};