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/teachingServices.js | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 54 insertions(+), 0 deletions(-) diff --git a/src/router/modules/teachingServices.js b/src/router/modules/teachingServices.js new file mode 100644 index 0000000..1b9218b --- /dev/null +++ b/src/router/modules/teachingServices.js @@ -0,0 +1,54 @@ +import baseLayout from "@/layout/base"; +const bookStoreRouter = [ + { + path: "/teachingServices", + name: "teachingServices", + redirect: { name: "teachingServices-index" }, + component: baseLayout, + meta: { + name: "鏁欏鏈嶅姟", + authentication: false + }, + children: [ + { + path: "index", + name: "teachingServices-index", + meta: { + name: "鏁欏鏈嶅姟", + authentication: false, + keepAlive: true + }, + component: () => import("@/views/teachingServices/index") + }, + { + path: "detail", + name: "teachingServices-detail", + meta: { + name: "鏁欏鏈嶅姟璇︽儏", + authentication: false + }, + component: () => import("@/views/teachingServices/detail") + }, + { + path:"applyBook-paper", + name:"teachingServices-applyBook-paper", + meta:{ + name:"绾歌川鏍蜂功鐢宠", + authentication: false + }, + component:() => import("@/views/teachingServices/applyBookPaper") + }, + { + path:"applyBook-electronic", + name:"teachingServices-applyBook-electronic", + meta:{ + name:"鐢靛瓙鏍蜂功鐢宠", + authentication: false + }, + component:() => import("@/views/teachingServices/applyBookElectronic") + } + ] + } +]; + +export default bookStoreRouter; -- Gitblit v1.9.1