소스 검색

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
 const itemRender = (route, params, routes, paths) => {
   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 ? (
     <span>{route.breadcrumbName}</span>
   ) : (