route.js 2.31 KB
/*
 * @Date: 2024-08-26 10:42:15
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-10-17 09:22:48
 * @FilePath: /hager/src/route.js
 * @Description: 文件描述
 */
export default [{
  path: '/',
  name: '首页',
  component: () => import('@/views/index'),
  meta: {
    title: '海格电器',
    tag: 'index'
  },
  children: []
}, {
  path: '/product/index',
  name: '二级目录',
  component: () => import('@/views/product/index'),
  meta: {
    title: '海格电器',
    tag: 'product'
  },
  children: []
}, {
  path: '/product/detail',
  name: '详情页',
  component: () => import('@/views/product/detail'),
  meta: {
    title: '海格电器',
    tag: 'product'
  },
  children: []
}, {
  path: '/solution/index',
  name: '解决方案',
  component: () => import('@/views/solution/index'),
  meta: {
    title: '海格电器',
    tag: 'solution'
  },
  children: []
}, {
  path: '/solution/detail',
  name: '解决方案详情',
  component: () => import('@/views/solution/detail'),
  meta: {
    title: '海格电器',
    tag: 'solution'
  },
  children: []
}, {
  path: '/about',
  name: '关于海格',
  component: () => import('@/views/about'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}, {
  path: '/about/global',
  name: '海格全球',
  component: () => import('@/views/about/global'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}, {
  path: '/about/china',
  name: '海格电气在中国',
  component: () => import('@/views/about/china'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}, {
  path: '/about/design',
  name: '创新设计',
  component: () => import('@/views/about/design'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}, {
  path: '/about/product',
  name: '生产研发',
  component: () => import('@/views/about/product'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}, {
  path: '/about/development',
  name: '可持续发展',
  component: () => import('@/views/about/development'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}, {
  path: '/about/honors',
  name: '荣誉展示',
  component: () => import('@/views/about/honors'),
  meta: {
    title: '海格电器',
    tag: 'about'
  },
  children: []
}]