add file table template for each KeluhanPage content

This commit is contained in:
Dede Fuji Abdul
2023-10-31 16:21:34 +07:00
parent b42f2c003a
commit fbbda2e9d1
17 changed files with 1202 additions and 15 deletions

View File

@ -30,6 +30,23 @@ import {
GangguanTable19,
GangguanTable20,
} from '@/components/Pages/Gangguan'
import {
KeluhanTable1,
KeluhanTable2,
KeluhanTable3,
KeluhanTable4,
KeluhanTable5,
KeluhanTable6,
KeluhanTable7,
KeluhanTable8,
KeluhanTable9,
KeluhanTable10,
KeluhanTable11,
KeluhanTable12,
KeluhanTable13,
KeluhanTable14,
KeluhanTable15,
} from '@/components/Pages/Keluhan'
export const routes: RouteRecordRaw[] = [
{
@ -172,37 +189,37 @@ export const routes: RouteRecordRaw[] = [
{
path: '1',
name: 'Daftar Keluhan Dialihkan Ke Unit Lain',
component: EmptyPage,
component: KeluhanTable1,
},
{
path: '2',
name: 'Daftar Keluhan Pelanggan Lebih Dari 1 Kali',
component: EmptyPage,
component: KeluhanTable2,
},
{
path: '3',
name: 'Daftar Keluhan Response Time',
component: EmptyPage,
component: KeluhanTable3,
},
{
path: '4',
name: 'Daftar Keluhan Recovery Time',
component: EmptyPage,
component: KeluhanTable4,
},
{
path: '5',
name: 'Daftar Keluhan Selesai Tanpa ID Pelanggan',
component: EmptyPage,
component: KeluhanTable5,
},
{
path: '6',
name: 'Daftar Keluhan Berdasarkan Media',
component: EmptyPage,
component: KeluhanTable6,
},
{
path: '7',
name: 'Daftar Keluhan Selesai di CC123',
component: EmptyPage,
component: KeluhanTable7,
},
],
},
@ -213,42 +230,42 @@ export const routes: RouteRecordRaw[] = [
{
path: '1',
name: 'Rekapitulasi Keluhan All',
component: EmptyPage,
component: KeluhanTable8,
},
{
path: '2',
name: 'Rekapitulasi Keluhan Per Fungsi Bidang',
component: EmptyPage,
component: KeluhanTable9,
},
{
path: '3',
name: 'Rekapitulasi Keluhan Per Jenis Keluhan',
component: EmptyPage,
component: KeluhanTable10,
},
{
path: '4',
name: 'Rekapitulasi Keluhan Per Tanggal',
component: EmptyPage,
component: KeluhanTable11,
},
{
path: '5',
name: 'Rekapitulasi Keluhan Per Unit',
component: EmptyPage,
component: KeluhanTable12,
},
{
path: '6',
name: 'Rekapitulasi Keluhan Berdasarkan Media',
component: EmptyPage,
component: KeluhanTable13,
},
{
path: '7',
name: 'Rekapitulasi Keluhan Per Kelompok Keluhan',
component: EmptyPage,
component: KeluhanTable14,
},
{
path: '8',
name: 'Rekapitulasi Rating Per Unit',
component: EmptyPage,
component: KeluhanTable15,
},
],
}