1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
|
|