perf: route rank is null

This commit is contained in:
xiaoxian521 2022-03-17 19:53:10 +08:00
parent ae57e42612
commit 7beb3e63fe
3 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,7 @@
"mockjs": "^1.1.0", "mockjs": "^1.1.0",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"path": "^0.12.7", "path": "^0.12.7",
"pinia": "^2.0.11", "pinia": "^2.0.12",
"qs": "^6.10.1", "qs": "^6.10.1",
"resize-observer-polyfill": "^1.5.1", "resize-observer-polyfill": "^1.5.1",
"responsive-storage": "^1.0.11", "responsive-storage": "^1.0.11",

2
pnpm-lock.yaml generated
View File

@ -59,7 +59,7 @@ specifiers:
nprogress: ^0.2.0 nprogress: ^0.2.0
path: ^0.12.7 path: ^0.12.7
picocolors: ^1.0.0 picocolors: ^1.0.0
pinia: ^2.0.11 pinia: ^2.0.12
postcss: ^8.4.6 postcss: ^8.4.6
postcss-html: ^1.3.0 postcss-html: ^1.3.0
postcss-import: 14.0.0 postcss-import: 14.0.0

View File

@ -23,6 +23,7 @@ import { getAsyncRoutes } from "/@/api/routes";
// 按照路由中meta下的rank等级升序来排序路由 // 按照路由中meta下的rank等级升序来排序路由
function ascending(arr: any[]) { function ascending(arr: any[]) {
arr.forEach(v => { arr.forEach(v => {
if (v?.meta?.rank === null) v.meta.rank = undefined;
if (v?.meta?.rank === 0) { if (v?.meta?.rank === 0) {
if (v.name !== "home" && v.path !== "/") { if (v.name !== "home" && v.path !== "/") {
console.warn("rank only the home page can be 0"); console.warn("rank only the home page can be 0");