12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // ppt路由模块
- /**
- * meta:{
- * noHead:pad端不需要顶部
- * hasBackHome:pad端顶部有返回首页
- * }
- */
- export const pptENRoutes=[
- {
- path:"/ppten/index",
- name:"PPTENIndex",
- component: () => import("@/views/ppt/Index.vue"),
- meta: {
- title: "智能PPT",
- hasBackHome:true,
- keepAlive:false
- },
- },
- {
- path:"/ppten/detail",
- name:"PPTENDetail",
- component: () => import("@/views/ppt/Detail.vue"),
- meta: {
- title: "智能PPT",
- hasBackHome:true
- },
- },
- {
- path:"/ppten/search",
- name:"PPTENSearch",
- component: () => import("@/views/ppt/Search.vue"),
- meta: { title: "搜索PPT",keepAlive:true },
- },
- {
- path:"/ppten/preview",
- name:"PPTENPreview",
- component: () => import("@/views/ppt/Preview.vue"),
- meta: {
- title: "智能PPT",
- noHead:true
- },
- },
- ]
|