diff --git a/src/components/SiderMenu/SiderMenu.js b/src/components/SiderMenu/SiderMenu.js index f1b44f553c7c812de6c17b7359a4b4064cb3c2e3..2068b7b88c5f9e42da785a4c0b2bea16f3142a34 100644 --- a/src/components/SiderMenu/SiderMenu.js +++ b/src/components/SiderMenu/SiderMenu.js @@ -42,7 +42,7 @@ export const getFlatMenuKeys = menu => * @param flatMenuKeys: [/abc, /abc/:id, /abc/:id/info] * @param paths: [/abc, /abc/11, /abc/11/info] */ -export const getMeunMatchKeys = (flatMenuKeys, paths) => +export const getMenuMatchKeys = (flatMenuKeys, paths) => paths .reduce((matchKeys, path) => ( matchKeys.concat( @@ -72,7 +72,7 @@ export default class SiderMenu extends PureComponent { */ getDefaultCollapsedSubMenus(props) { const { location: { pathname } } = props || this.props; - return getMeunMatchKeys(this.flatMenuKeys, urlToList(pathname)); + return getMenuMatchKeys(this.flatMenuKeys, urlToList(pathname)); } /** * 判断是否是http链接.返回 Link 或 a @@ -161,7 +161,7 @@ export default class SiderMenu extends PureComponent { // Get the currently selected menu getSelectedMenuKeys = () => { const { location: { pathname } } = this.props; - return getMeunMatchKeys(this.flatMenuKeys, urlToList(pathname)); + return getMenuMatchKeys(this.flatMenuKeys, urlToList(pathname)); }; // conversion Path // 转化路径