Selaa lähdekoodia

perf: route rank is null

xiaoxian521 3 vuotta sitten
vanhempi
commit
7beb3e63fe
3 muutettua tiedostoa jossa 3 lisäystä ja 2 poistoa
  1. 1 1
      package.json
  2. 1 1
      pnpm-lock.yaml
  3. 1 0
      src/router/utils.ts

+ 1 - 1
package.json

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

+ 1 - 1
pnpm-lock.yaml

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

+ 1 - 0
src/router/utils.ts

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