154 lines
6.1 KiB
Vue
Executable File
154 lines
6.1 KiB
Vue
Executable File
<template>
|
|
<Filters @run-search="() => filterData(filters)" class="mb-4">
|
|
<Type17 @update:filters="(value) => {
|
|
filters = value
|
|
}
|
|
" />
|
|
</Filters>
|
|
<div id="data">
|
|
<DxDataGrid class="max-h-[calc(100vh-140px)]" :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"
|
|
:word-wrap-enabled="true" @row-prepared="onRowPrepared">
|
|
<DxSelection mode="single" />
|
|
<DxPaging :enabled="false" />
|
|
<DxScrolling column-rendering-mode="virtual" mode="virtual" />
|
|
<DxLoadPanel :position="position" :show-indicator="showIndicator" :show-pane="showPane" :shading="shading"
|
|
v-if="loading" v-model:visible="loading" :enabled="true" />
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport :enabled="true" :formats="['pdf', 'xlsx', 'document']" :allow-export-selected-data="false" />
|
|
<DxColumnFixing :enabled="true" />
|
|
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="No.Lapor" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Tipe Isu" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Nama" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Unit" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="No.Telp" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Permasalahan"
|
|
css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Deskripsi" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Tgl Buat" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Lap.Ulang" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Ket.Lap.Ulang"
|
|
css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Status" css-class="custom-table-column" />
|
|
<DxColumn :width="170" alignment="center" data-field="" caption="Durasi" css-class="custom-table-column" />
|
|
</DxDataGrid>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted,ref } from 'vue'
|
|
import { useFiltersStore } from '@/stores/filters'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import { DxColumn, DxColumnFixing, DxExport, DxLoadPanel, DxPaging, DxScrolling, DxSearchPanel, DxSelection } from 'devextreme-vue/data-grid'
|
|
import { jsPDF } from 'jspdf'
|
|
import { exportDataGrid as exportToPdf } from 'devextreme/pdf_exporter'
|
|
import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
|
|
import { saveAs } from 'file-saver'
|
|
import { Workbook } from 'exceljs'
|
|
import { Type17 } from '@/components/Form/FiltersType'
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
const position = { of: '#data' }
|
|
const showIndicator = ref(true)
|
|
const shading = ref(true)
|
|
const showPane = ref(true)
|
|
const dataDetail = ref<any>()
|
|
const showDetail = ref(false)
|
|
const loading = ref(false)
|
|
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 onSelectionChanged = ({ selectedRowsData }: any) => {
|
|
const data = selectedRowsData[0]
|
|
console.log(data)
|
|
}
|
|
|
|
const onRowPrepared = (e: any) => {
|
|
if (e.rowType === "data") {
|
|
if (e.data.Speed > e.data.SpeedLimit) {
|
|
// e.cellElement.style.cssText = "color: white; background-color: red";
|
|
// or
|
|
e.rowElement.classList.add("my-class");
|
|
// To override alternation color
|
|
// e.rowElement.className = e.rowElement.className.replace("dx-row-alt", "");
|
|
}
|
|
}
|
|
}
|
|
|
|
const data = [
|
|
{
|
|
noLapor: 'K2316081000039',
|
|
tipeIsu: 'PDPB',
|
|
nama: 'BAPAK HAIRUL',
|
|
unit: 'ULP BARABAI',
|
|
noTelp: '081350000000',
|
|
permasalahan: 'MCB KWH SERING TURUN',
|
|
deskripsi: '-',
|
|
tglBuat: '10/08/2016 07:18:17',
|
|
lapUlang: 0,
|
|
ketLapUlang: '-',
|
|
status: 'Dalam Proses Manager Unit',
|
|
durasi: '2638 01:59:17'
|
|
},
|
|
{
|
|
noLapor: 'K2316081000039',
|
|
tipeIsu: 'PDPB',
|
|
nama: 'BAPAK HAIRUL',
|
|
unit: 'ULP BARABAI',
|
|
noTelp: '081350000000',
|
|
permasalahan: 'MCB KWH SERING TURUN',
|
|
deskripsi: '-',
|
|
tglBuat: '10/08/2016 07:18:17',
|
|
lapUlang: 0,
|
|
ketLapUlang: '-',
|
|
status: 'Dalam Proses Manager Unit',
|
|
durasi: '2638 01:59:17'
|
|
},
|
|
{
|
|
noLapor: 'K2316081000039',
|
|
tipeIsu: 'PDPB',
|
|
nama: 'BAPAK HAIRUL',
|
|
unit: 'ULP BARABAI',
|
|
noTelp: '081350000000',
|
|
permasalahan: 'MCB KWH SERING TURUN',
|
|
deskripsi: '-',
|
|
tglBuat: '10/08/2016 07:18:17',
|
|
lapUlang: 0,
|
|
ketLapUlang: '-',
|
|
status: 'Dalam Proses Manager Unit',
|
|
durasi: '2638 01:59:17'
|
|
}
|
|
]
|
|
|
|
const filters = ref();
|
|
const filterData = (filters: any) => {
|
|
console.log(filters)
|
|
}
|
|
</script> |