mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
perf: route rank is null
This commit is contained in:
parent
ae57e42612
commit
7beb3e63fe
@ -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",
|
||||
|
2
pnpm-lock.yaml
generated
2
pnpm-lock.yaml
generated
@ -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
|
||||
|
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user