88 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|     <div>
 | |
|         <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">
 | |
|             <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" />
 | |
|             <DxColumnFixing :enabled="true" />
 | |
| 
 | |
|             <DxColumn :width="200" alignment="center" data-field="" caption="User Regu" css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" caption="Personil Yantek"
 | |
|                 css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" data-type="number"
 | |
|                 caption="Jumlah WO Gangguan Individual" css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" data-type="number"
 | |
|                 caption="Rata-rata Durasi WO Gangguan" css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" data-type="number" caption="Rata-rata RPT WO Gangguan"
 | |
|                 css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" data-type="number" caption="Rata-rata RCT WO Gangguan"
 | |
|                 css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" data-type="number" caption="Jumlah Wo Penugasan Khusus"
 | |
|                 css-class="custom-table-column" />
 | |
|             <DxColumn :width="200" alignment="center" data-field="" data-type="number"
 | |
|                 caption="Rata-rata Duarasi WO Penugasan" css-class="custom-table-column" />
 | |
| 
 | |
|         </DxDataGrid>
 | |
|     </div>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import { onMounted } 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'
 | |
| 
 | |
| 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)
 | |
| }
 | |
| 
 | |
| onMounted(() => {
 | |
|     const filters = useFiltersStore()
 | |
| 
 | |
|     filters.setConfig({
 | |
|         type: 'type-1',
 | |
|         reportButton: true
 | |
|     })
 | |
| })
 | |
| </script> |