From ef37c59e055a990ce247b265b27d3fcef430a243 Mon Sep 17 00:00:00 2001 From: 杨磊 <505174330@qq.com> Date: 星期五, 15 八月 2025 10:19:18 +0800 Subject: [PATCH] first submit --- src/router/modules/informationCenter.js | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/src/router/modules/informationCenter.js b/src/router/modules/informationCenter.js new file mode 100644 index 0000000..443538a --- /dev/null +++ b/src/router/modules/informationCenter.js @@ -0,0 +1,35 @@ +import baseLayout from "@/layout/base"; +const informationCenterRouter = [ + { + path: "/informationCenter", + name: "informationCenter", + redirect: { name: "informationCenter-index" }, + component: baseLayout, + meta: { + name: "鍜ㄨ涓績", + authentication: false, + }, + children: [ + { + path: "index", + name: "informationCenter-index", + meta: { + name: "鍜ㄨ涓績", + authentication: false, + }, + component: () => import("@/views/informationCenter/index"), + }, + { + path: "detail", + name: "informationCenter-detail", + meta: { + name: "鍜ㄨ璇︽儏", + authentication: false, + }, + component: () => import("@/views/informationCenter/detail"), + }, + ], + }, +]; + +export default informationCenterRouter; -- Gitblit v1.9.1