pptEn.js 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // ppt路由模块
  2. /**
  3. * meta:{
  4. * noHead:pad端不需要顶部
  5. * hasBackHome:pad端顶部有返回首页
  6. * }
  7. */
  8. export const pptENRoutes=[
  9. {
  10. path:"/ppten/index",
  11. name:"PPTENIndex",
  12. component: () => import("@/views/ppt/Index.vue"),
  13. meta: {
  14. title: "智能PPT",
  15. hasBackHome:true,
  16. keepAlive:false
  17. },
  18. },
  19. {
  20. path:"/ppten/detail",
  21. name:"PPTENDetail",
  22. component: () => import("@/views/ppt/Detail.vue"),
  23. meta: {
  24. title: "智能PPT",
  25. hasBackHome:true
  26. },
  27. },
  28. {
  29. path:"/ppten/search",
  30. name:"PPTENSearch",
  31. component: () => import("@/views/ppt/Search.vue"),
  32. meta: { title: "搜索PPT",keepAlive:true },
  33. },
  34. {
  35. path:"/ppten/preview",
  36. name:"PPTENPreview",
  37. component: () => import("@/views/ppt/Preview.vue"),
  38. meta: {
  39. title: "智能PPT",
  40. noHead:true
  41. },
  42. },
  43. ]