summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/const/menu-item.ts
blob: 70933a85ee3d439fee547103455ade05fc24a720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// route table

const MENU_ITEM = [
    {
        name: '0', // Angular
        title: 'Home',
        children: [],
        path: '/home',
        source: 'Angular'
    },
    {
        name: '1', // Angular
        title: 'Customer',
        children: [],
        path: '/management',
        source: 'Angular'
    },
    {
        name: '2', // Angular
        title: 'Services',
        children: [
            {
                name: '2-0',
                title: 'Lifecycle Management',
                path: '/services/services-list',
                source: 'Angular'
            }, 
            {
                name: '2-1',
                title: 'SOTN Eline',
                path: '/services/sotn-management',
                source: 'Angular'
            }, 
            {
                name: '2-2',
                title: '5G Sclicing Management',
                path: '/services/slicing-management',
                source: 'Angular'
            }, 
        ]
    },
    {
        name: '3', // Angular
        title: 'Package Managemeny',
        children: [],
        path: '/onboard-vnf-vm',
        source: 'Angular'
    },
    {
        name: '4', // Angular
        title: 'Network Topology',
        children: [
            {
                name: '4-0',
                title: 'CCVPN network',
                path: '/network/ccvpn-network',
                source: 'Angular'
            },
            {
                name: '4-1',
                title: 'MDONS Network',
                path: '/network/mdons-network',
                source: 'Angular'
            }
        ]
    },
    {
        name: '5', // Angular
        title: 'Monitor',
        children: [
            {
                name: '5-0',
                title: '5G Slicing',
                path: '/fcaps/5gslicing',
                source: 'Angular'
            }
        ]
    },
    {
        name: '6', // vue
        title: 'Test',
        children: [],
        path: '/test',
        source: 'vue'
    }
]

export default {
    MENU_ITEM
}