From 741e6b4d63e9e3427e3478517a59da3f57e9a37b Mon Sep 17 00:00:00 2001 From: hejianhao <15708179461@qq.com> Date: 星期一, 31 三月 2025 17:09:42 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- src/router/index.js | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 6863c07..d0a8e63 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -57,11 +57,27 @@ ] }, ], + },{ + path: "", + redirect: "dispatching", + component: Layouts, + children: [ + { + path: "/dispatching", + meta: { + title: "实验调度管理", + oneself: true, + hide: true, + privilege: 'dispatching' + }, + component: () => import("../views/dispatching/list.vue"), + }, + ], }, ]; const router = new VueRouter({ - mode: "history", + mode: "hash", base: process.env.BASE_URL, routes, }); -- Gitblit v1.7.1