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;