add more new route menu

This commit is contained in:
Dede Fuji Abdul
2023-10-26 16:27:32 +07:00
parent a9553cee4c
commit a9b1d720d9
2 changed files with 68 additions and 12 deletions

View File

@ -472,6 +472,56 @@ export const routes: RouteRecordRaw[] = [
},
],
},
{
path: 'material',
name: 'Material',
children: [
{
path: 'daftar',
name: 'Daftar',
children: [
{
path: '1',
name: 'Daftar Gangguan Dan Material Yang Dipakai',
component: TestPage,
},
],
},
{
path: 'rekapitulasi',
name: 'Rekapitulasi',
children: [
{
path: '1',
name: 'Rekapitulasi Pemakaian Material',
component: TestPage,
},
],
}
],
},
{
path: 'transaksi',
name: 'Transaksi',
children: [
{
path: '1',
name: 'Transaksi APKT',
component: TestPage,
},
],
},
{
path: 'pencarian-data',
name: 'Pencarian Data',
children: [
{
path: '1',
name: 'Pencarian Report Number',
component: TestPage,
}
]
},
]
},
{