فهرست منبع

fix #4025 ,feat: home will be able to click

陈帅 6 سال پیش
والد
کامیت
79cc60ac32
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      src/components/PageHeaderWrapper/breadcrumb.js

+ 4 - 0
src/components/PageHeaderWrapper/breadcrumb.js

@@ -8,6 +8,10 @@ import { urlToList } from '../_utils/pathTools';
 // Render the Breadcrumb child node
 // Render the Breadcrumb child node
 const itemRender = (route, params, routes, paths) => {
 const itemRender = (route, params, routes, paths) => {
   const last = routes.indexOf(route) === routes.length - 1;
   const last = routes.indexOf(route) === routes.length - 1;
+  // if path is home, use Link。
+  if (route.path === '/') {
+    return <Link to={paths.join('/')}>{route.breadcrumbName}</Link>;
+  }
   return last || !route.component ? (
   return last || !route.component ? (
     <span>{route.breadcrumbName}</span>
     <span>{route.breadcrumbName}</span>
   ) : (
   ) : (