| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import Layout from '@/layout'
- export default {
- path: '/charging-profiles',
- redirect: '/charging-profiles/index',
- component: Layout,
- meta: {
- title: 'Charging Profiles',
- icon: 'charging-profiles',
- //activeIcon: 'charging-profiles-active',
- affix: true,
- },
- children: [
- {
- path: '/charging-profiles/index',
- component: () => import('@/views/charging/ChargingProfiles'),
- name: 'charging-profiles',
- meta: {
- title: 'Charging Profiles',
- icon: 'sidebar-submenu-item',
- activeIcon: 'sidebar-submenu-item-active',
- breadcrumb: false
- }
- },
- {
- path: '/charging-profiles/config-stations',
- component: () => import('@/views/charging/ConfigureStations'),
- name: 'config-stations',
- meta: {
- title: 'Configure Stations',
- icon: 'sidebar-submenu-item',
- activeIcon: 'sidebar-submenu-item-active',
- breadcrumb: true
- },
- /*children: [{
- path: '/charging-profiles/config-stations/view/:id',
- component: () => import('@/views/charging/EditProfile'),
- name: 'view-charging-profile',
- meta: {
- title: 'View Charging Profile',
- activeMenu: '/charging-profiles/config-stations',
- breadcrumb: false
- },
- hidden: true
- }]*/
- },
- {
- path: '/charging-profiles/add',
- component: () => import('@/views/charging/AddProfile'),
- name: 'add-charging-profile',
- meta: {
- title: 'Add Charging Profile',
- activeMenu: '/charging-profiles/index'
- },
- hidden: true
- },
- {
- path: '/charging-profiles/edit',
- component: () => import('@/views/charging/EditProfile'),
- name: 'edit-charging-profile',
- meta: {
- title: 'Edit Charging Profile',
- activeMenu: '/charging-profiles/index'
- },
- hidden: true
- },
- {
- path: '/charging-profiles/view/:id',
- component: () => import('@/views/charging/EditProfile'),
- name: 'view-charging-profile',
- meta: {
- title: 'View Charging Profile',
- activeMenu: '/charging-profiles/config-stations',
- parent: {
- title: 'Configure Stations',
- path: "/charging-profiles/config-stations"
- }
- },
- hidden: true
- }
- ]
- }
|