增加进件功能

This commit is contained in:
2026-01-09 18:52:26 +08:00
parent 6c08b3b878
commit 684014e183
28 changed files with 4765 additions and 67 deletions

View File

@@ -74,7 +74,7 @@ export default {
},
async init() {
const res = await menusStore.getMenus()
const arr=res.filter(v => v.type == 0 && v.children.length && !v.hidden).map(v => {
const arr=res.filter(v => v.type == 0 && v.children.length && !v.hidden && v.menuId!=1).map(v => {
return {
...v,
children: v.children.filter(child => child.type == 0 && !child.hidden)