大表功能完成

This commit is contained in:
2025-05-10 19:21:50 +08:00
parent 0a0beb3e91
commit 25b5576274
40 changed files with 3506 additions and 194 deletions

View File

@@ -5,7 +5,6 @@ import { appRoutes } from "./routes"
import { REDIRECT_MAIN, NOT_FOUND_ROUTE, PROJECT_LAYOUT } from "./routes/base"
import createRouteGuard from "@/router/guard/index"
// 定义工作区路由名称,为了不写死
export const WORK_AREA_NAME = "project"
@@ -110,6 +109,18 @@ const router = createRouter({
locale: "问题单详情",
icon: "icon-arrow-right"
}
},
{
path: "opeSets",
name: "opeSets",
component: () => import("@/views/project/opeSets/index.vue"),
meta: {
requiresAuth: true,
ignoreCache: true,
roles: ["*"],
locale: "操作集合",
icon: "icon-arrow-right"
}
}
]
},