109 lines
4.8 KiB
Vue
109 lines
4.8 KiB
Vue
<template>
|
|
<div>
|
|
<DxDataGrid class="max-h-[calc(100vh-140px)]" :data-source="data" key-expr="no_laporan" :show-column-lines="true"
|
|
:show-row-lines="false" :show-borders="true" :row-alternation-enabled="true" :hover-state-enabled="true"
|
|
@selection-changed="onSelectionChanged" :column-width="100" @exporting="onExporting"
|
|
:allow-column-resizing="true" column-resizing-mode="widget">
|
|
<DxSelection mode="single" />
|
|
<DxPaging :enabled="false" />
|
|
<DxScrolling column-rendering-mode="virtual" mode="virtual" />
|
|
<DxLoadPanel :enabled="true" />
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport :enabled="true" :formats="['pdf', 'xlsx', 'document']" :allow-export-selected-data="false" />
|
|
|
|
<DxColumn :width="40" alignment="center" data-field="number" data-type="number" caption="No" />
|
|
<DxColumn :width="150" alignment="center" data-field="no_laporan" caption="No Laporan" />
|
|
<DxColumn :width="150" alignment="center" data-field="tanggal_laporan" caption="Tgl Lapor" />
|
|
<DxColumn :width="150" alignment="center" data-field="tanggal_respon" caption="Tgl Response" />
|
|
<DxColumn :width="150" alignment="center" data-field="tanggal_recovery" caption="Tgl Recovery" />
|
|
<DxColumn alignment="center" data-field="jumlah_lapor" caption="Jml Lapor" />
|
|
<DxColumn :width="170" alignment="center" data-field="durasi_respon" caption="Durasi Response Time" />
|
|
<DxColumn :width="170" alignment="center" data-field="durasi_recovery" caption="Durasi Recovery Time" />
|
|
<DxColumn :width="150" alignment="center" data-field="status" caption="Status" />
|
|
<DxColumn :width="150" alignment="center" data-field="id_pelanggan" caption="IDPEL/NO METER" />
|
|
<DxColumn :width="150" alignment="center" data-field="nama_pelapor" caption="Nama Pelapor" />
|
|
<DxColumn :width="170" alignment="center" data-field="alamat_pelapor" caption="Alamat Pelapor" />
|
|
<DxColumn :width="150" alignment="center" data-field="no_telp_pelapor" caption="No Telp Pelapor" />
|
|
<DxColumn :width="150" alignment="center" data-field="keterangan_pelapor" caption="Keterangan Pelapor" />
|
|
<DxColumn :width="150" alignment="center" data-field="sumber_laporan" caption="Sumber Lapor" />
|
|
<DxColumn :width="170" alignment="center" data-field="posko" caption="Posko" />
|
|
|
|
</DxDataGrid>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import { DxColumn, DxExport, DxLoadPanel, DxPaging, DxScrolling, DxSearchPanel, DxSelection } from 'devextreme-vue/data-grid'
|
|
import { onMounted, ref } from 'vue'
|
|
import { jsPDF } from 'jspdf'
|
|
import { exportDataGrid as exportToPdf } from 'devextreme/pdf_exporter'
|
|
import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
|
|
import type { Data2 } from '@/types/gangguan'
|
|
import { saveAs } from 'file-saver'
|
|
import { Workbook } from 'exceljs'
|
|
|
|
const data = ref<Data2[]>([])
|
|
|
|
const onExporting = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
const doc = new jsPDF()
|
|
|
|
exportToPdf({
|
|
jsPDFDocument: doc,
|
|
component: e.component,
|
|
indent: 5,
|
|
}).then(() => {
|
|
doc.save(`.pdf`)
|
|
})
|
|
} else {
|
|
const workbook = new Workbook()
|
|
const worksheet = workbook.addWorksheet('Employees')
|
|
|
|
exportToExcel({
|
|
component: e.component,
|
|
worksheet,
|
|
autoFilterEnabled: true,
|
|
}).then(() => {
|
|
workbook.xlsx.writeBuffer().then((buffer: any) => {
|
|
saveAs(new Blob([buffer], { type: 'application/octet-stream' }), 'DataGrid.xlsx')
|
|
})
|
|
})
|
|
|
|
e.cancel = true
|
|
}
|
|
}
|
|
|
|
const createDummy = () => {
|
|
for (let i = 0; i < 10; i++) {
|
|
data.value.push({
|
|
number: i + 1,
|
|
no_laporan: 'G5223091' + (900002 + i),
|
|
tanggal_laporan: '19/09/2023 12:26:42',
|
|
tanggal_respon: '19/09/2023 13:14:15',
|
|
tanggal_recovery: '19/09/2023 13:14:15',
|
|
durasi_respon: '0-0:47:32',
|
|
durasi_recovery: '0-0:49:35',
|
|
jumlah_lapor: 1,
|
|
status: 'Selesai',
|
|
id_pelanggan: '523013252126 / 1731807',
|
|
nama_pelapor: 'IBU FELISIA',
|
|
alamat_pelapor: 'JL KWS INDUSTRI CIPT GINA KAV 5 BLOK B1',
|
|
no_telp_pelapor: '082229870235',
|
|
keterangan_pelapor: '-',
|
|
sumber_laporan: 'Contact Center',
|
|
posko: 'POSKO ULP SEMARANG'
|
|
});
|
|
}
|
|
}
|
|
|
|
const onSelectionChanged = ({ selectedRowsData }: any) => {
|
|
const data = selectedRowsData[0]
|
|
console.log(data)
|
|
};
|
|
|
|
onMounted(() => {
|
|
createDummy()
|
|
})
|
|
|
|
</script> |