123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- *
- *首页、园区资讯路由
- *
- */
-
- export default [
- // 官网首页
- {
- path: "/index",
- name: "Index",
- component: () =>
- import ("@views/index/Index.vue"),
- meta: {
- title: "园区首页",
- },
- },
- // 园区资讯问答
- {
- path: "/park-information",
- name: "ParkInformation",
- component: () =>
- import ("@views/park-information/Index.vue"),
- meta: {
- title: "园区资讯问答",
- },
- children: [{
- path: "/",
- redirect: "question-list",
- },
- {
- path: "question-list",
- name: "QuestionList",
- component: () =>
- import ("@views/park-information/List.vue"),
- },
- {
- path: "search",
- name: "Search",
- component: () =>
- import ("@views/park-information/SearchList.vue"),
- },
- {
- path: "detail",
- name: "Detail",
- component: () =>
- import ("@views/park-information/Detail.vue"),
- },
- ],
- },
- ];
|