shenzhen-dev #2

Merged
admin merged 614 commits from shenzhen-dev into master 2025-06-03 18:28:43 +08:00
2 changed files with 9 additions and 2 deletions
Showing only changes of commit 173f4be04d - Show all commits

View File

@ -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: {

View File

@ -110,7 +110,8 @@ const login = (formEl: FormInstance | undefined) => {
});
return;
}
router.push("/commandScreen");
// router.push("/commandScreen");
router.push("/overviewScreen");
} else {
router.push("/projectOverview");
}