dangyunlong.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /** 引入模板 **/
  2. import Layout from '@/layout'
  3. import creatWebsite from '@/layout/creatWebsite'
  4. const dangyunlongRouter= [
  5. {
  6. path: '/templateCreat',
  7. component: creatWebsite,
  8. children: [
  9. {
  10. name: '',
  11. path: '',
  12. component: () => import('@/views/template/templateCreat'),
  13. meta: {
  14. title: '构建网站模板',
  15. hidden: true,
  16. breadcrumb: true
  17. }
  18. }
  19. ]
  20. },
  21. {
  22. path: '/templateBase',
  23. component: Layout,
  24. children: [
  25. {
  26. name: '',
  27. path: '',
  28. component: () => import('@/views/template/templateBase'),
  29. meta: {
  30. title: '填写模板基本信息',
  31. hidden: true,
  32. breadcrumb: true
  33. }
  34. }
  35. ]
  36. },
  37. {
  38. path: '/templateStyle',
  39. component: Layout,
  40. children: [
  41. {
  42. name: '',
  43. path: '',
  44. component: () => import('@/views/template/templateStyle'),
  45. meta: {
  46. title: '选择模板风格',
  47. hidden: true,
  48. breadcrumb: true
  49. }
  50. }
  51. ]
  52. },
  53. {
  54. path: '/templateList',
  55. component: Layout,
  56. children: [
  57. {
  58. name: '',
  59. path: '',
  60. component: () => import('@/views/template/templateList'),
  61. meta: {
  62. title: '网站模板',
  63. hidden: true,
  64. breadcrumb: true
  65. }
  66. }
  67. ]
  68. },
  69. ]
  70. export default dangyunlongRouter