diff --git a/src/routers/modules/staticRouter.ts b/src/routers/modules/staticRouter.ts index d09e333..1c681f8 100644 --- a/src/routers/modules/staticRouter.ts +++ b/src/routers/modules/staticRouter.ts @@ -25,7 +25,8 @@ export const staticRouter: RouteRecordRaw[] = [ path: "/large", name: "大屏", // component: () => import("@/views/sevenLargeScreen/indexL.vue"), //七参数标准版 - component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏 + // component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏 + component: () => import("@/views/overviewScreen/indexCommand.vue"), //总览大屏 // component: () => import("@/views/sevenLargeScreen/indexL_syhy.vue"), // 只有一级路由(盘锦、嘉兴、鄱湖美湾医疗项目需切换至该首页) children: [ { @@ -269,6 +270,11 @@ export const staticRouter: RouteRecordRaw[] = [ path: "/commandScreen", name: "指挥部大屏", component: () => import("@/views/commandScreen/commandCenter/index.vue") + }, + { + path: "/overviewScreen", + name: "总览大屏", + component: () => import("@/views/overviewScreen/commandCenter/index.vue") } ], meta: { diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 91f25c4..b60ccf0 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -110,7 +110,8 @@ const login = (formEl: FormInstance | undefined) => { }); return; } - router.push("/commandScreen"); + // router.push("/commandScreen"); + router.push("/overviewScreen"); } else { router.push("/projectOverview"); }