Skip to content

Commit

Permalink
chore: fix type (#653)
Browse files Browse the repository at this point in the history
* chore: fix type

* chore: remove console
  • Loading branch information
uyarn authored Dec 6, 2023
1 parent 6a53559 commit b5400ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/locales/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ const languages = usePreferredLanguages();
// 生成语言模块列表
const generateLangModuleMap = () => {
const fullPaths = Object.keys(langModules);
console.log(langModules, 'langModules');
fullPaths.forEach((fullPath) => {
const k = fullPath.replace('./lang', '');
const startIndex = 1;
const lastIndex = k.lastIndexOf('/');
const code = k.substring(startIndex, lastIndex);
langCode.push(code);
console.log(langCode, 'langCode');
langModuleMap.set(code, langModules[fullPath]);
});
};
Expand Down
5 changes: 3 additions & 2 deletions src/utils/route/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ function asyncImportRoute(routes: RouteItem[] | undefined) {
} else if (name) {
item.component = PARENT_LAYOUT();
}
if (item.meta.icon) item.meta.icon = (await getMenuIcon(item.meta.icon)).value;

if (item.meta.icon) item.meta.icon = await getMenuIcon(item.meta.icon);

// eslint-disable-next-line no-unused-expressions
children && asyncImportRoute(children);
Expand Down Expand Up @@ -102,7 +103,7 @@ export function transformObjectToRoute<T = RouteItem>(routeList: RouteItem[]): T
}
// eslint-disable-next-line no-unused-expressions
route.children && asyncImportRoute(route.children);
if (route.meta.icon) route.meta.icon = (await getMenuIcon(route.meta.icon)).value;
if (route.meta.icon) route.meta.icon = await getMenuIcon(route.meta.icon);
});

return [PAGE_NOT_FOUND_ROUTE, ...routeList] as unknown as T[];
Expand Down

0 comments on commit b5400ed

Please sign in to comment.