739 lines
22 KiB
Vue
Executable File
739 lines
22 KiB
Vue
Executable File
<template>
|
|
<Filters
|
|
@reset-form="data = []"
|
|
:report-button="true"
|
|
@run-search="() => filterData(filters)"
|
|
@run-report="() => exportToPDF(reportMeta, data, true)"
|
|
class="mb-4"
|
|
>
|
|
<Type1 @update:filters="(value) => (filters = value)" />
|
|
</Filters>
|
|
|
|
<div id="data">
|
|
<DxDataGrid
|
|
ref="dataGridRef"
|
|
:allow-column-reordering="true"
|
|
class="max-h-[calc(100vh-140px)] mb-10"
|
|
:data-source="data"
|
|
:show-column-lines="true"
|
|
:show-row-lines="false"
|
|
:show-borders="true"
|
|
:row-alternation-enabled="true"
|
|
:hover-state-enabled="true"
|
|
@selection-changed="onDataSelectionChanged"
|
|
@exporting="onExporting"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
:word-wrap-enabled="true"
|
|
>
|
|
<DxGrouping expand-mode="rowClick" />
|
|
<DxSelection mode="single" />
|
|
<DxPaging :enabled="false" />
|
|
<DxScrolling column-rendering-mode="virtual" mode="virtual" />
|
|
<!-- <DxLoadPanel
|
|
shading-color="rgba(0,0,0,0.4)"
|
|
:position="position"
|
|
:show-indicator="showIndicator"
|
|
:show-pane="showPane"
|
|
:shading="shading"
|
|
v-model:visible="loadingData"
|
|
: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
|
|
css-class="custom-table-column"
|
|
:width="50"
|
|
alignment="center"
|
|
data-field="number"
|
|
caption="No"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
:min-width="180"
|
|
data-field="nama_up3"
|
|
caption="Nama UP3"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
:min-width="180"
|
|
data-field="nama_uid"
|
|
caption="Nama UID"
|
|
css-class="custom-table-column"
|
|
:group-index="0"
|
|
/>
|
|
|
|
<DxColumn
|
|
alignment="center"
|
|
:min-width="180"
|
|
data-field="nama_posko"
|
|
caption="Nama Posko"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="180"
|
|
alignment="center"
|
|
data-field="posko_in"
|
|
caption="Posko IN"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
:width="180"
|
|
alignment="center"
|
|
data-field="posko_out"
|
|
caption="Posko OUT"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
|
|
<DxSummary>
|
|
<DxGroupItem
|
|
:show-in-group-footer="true"
|
|
column="number"
|
|
display-format="Total"
|
|
css-class="!text-left"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="true"
|
|
column="posko_in"
|
|
summary-type="sum"
|
|
display-format="{0}"
|
|
css-class="!text-right"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="true"
|
|
column="posko_out"
|
|
summary-type="sum"
|
|
display-format="{0}"
|
|
css-class="!text-right"
|
|
/>
|
|
</DxSummary>
|
|
|
|
<template #formatText="{ data }">
|
|
<p class="text-left cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatNumber="{ data }">
|
|
<p class="text-right cursor-pointer">
|
|
{{
|
|
isNumber(data.text)
|
|
? data.column.caption == '%'
|
|
? formatPercentage(data.text)
|
|
: formatNumber(data.text)
|
|
: data.text
|
|
}}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
|
|
<DetailDialog
|
|
:open="dialogDetail"
|
|
title="Detail Rekapitulasi Gangguan Alih Posko"
|
|
@on-close="closeDialog"
|
|
:full-width="true"
|
|
>
|
|
<div class="w-full mb-4 lg:w-[70%] lg:float-left">
|
|
<div class="p-4 bg-white rounded-xl lg:mr-4">
|
|
<DxDataGrid
|
|
:allow-column-reordering="true"
|
|
class="max-h-[calc(100vh-140px)]"
|
|
:data-source="dataSub"
|
|
:show-column-lines="true"
|
|
:show-row-lines="false"
|
|
:show-borders="true"
|
|
:row-alternation-enabled="true"
|
|
:hover-state-enabled="true"
|
|
@selection-changed="onDataSubSelectionChanged"
|
|
:column-width="100"
|
|
@exporting="onExportingDetail"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
>
|
|
<DxSelection mode="single" />
|
|
<DxPaging :page-size="20" :enabled="true" />
|
|
<DxPager
|
|
:visible="true"
|
|
:allowed-page-sizes="[20, 50, 100]"
|
|
display-mode="full"
|
|
:show-page-size-selector="true"
|
|
:show-info="true"
|
|
:show-navigation-buttons="true"
|
|
/>
|
|
<!-- <DxLoadPanel
|
|
shading-color="rgba(0,0,0,0.4)"
|
|
:position="position"
|
|
:show-indicator="showIndicator"
|
|
:show-pane="showPane"
|
|
:shading="shading"
|
|
v-model:visible="loadingSubData"
|
|
:enabled="true"
|
|
/> -->
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport
|
|
:enabled="true"
|
|
:formats="['pdf', 'xlsx', 'document']"
|
|
:allow-export-selected-data="false"
|
|
/>
|
|
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="50"
|
|
alignment="center"
|
|
:calculate-display-value="(item: any) => dataSub.findIndex((i) => i == item) + 1"
|
|
data-type="number"
|
|
caption="No"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="no_laporan"
|
|
caption="No Laporan"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="waktu_lapor"
|
|
caption="Tgl Lapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="waktu_response"
|
|
caption="Tgl Datang"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="waktu_recovery"
|
|
caption="Tgl Nyala"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_response_time"
|
|
caption="Durasi Response Time"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_recovery_time"
|
|
caption="Durasi Recovery Time"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="status_akhir"
|
|
caption="Status"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="idpel_nometer"
|
|
caption="IDPEL/NO METER"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="nama_pelapor"
|
|
caption="Nama Pelapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="alamat_pelapor"
|
|
caption="Alamat Pelapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="no_telp_pelapor"
|
|
caption="No Telp Pelapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="200"
|
|
alignment="center"
|
|
data-field="keterangan_pelapor"
|
|
caption="Keterangan Pelapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="nama_posko"
|
|
caption="Posko"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="media"
|
|
caption="Sumber Lapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Nama Petugas"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Posko Asal"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Posko Tujuan"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
|
|
<template #formatText="{ data }">
|
|
<p class="text-left cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatNumber="{ data }">
|
|
<p class="text-right cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatTime="{ data }">
|
|
<p>
|
|
{{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
</div>
|
|
<div class="w-full mb-4 lg:w-[30%] lg:float-right">
|
|
<div class="p-4 space-y-2 bg-white rounded-xl">
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Tgl Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.waktu_lapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Tgl Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.waktu_lapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Tgl Datang:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.waktu_response"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Tgl Nyala:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.waktu_recovery"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Durasi Response Time:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_response_time)
|
|
? formatWaktu(dataSubSelected?.durasi_response_time)
|
|
: '-'
|
|
"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Durasi Recovery Time:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_recovery_time)
|
|
? formatWaktu(dataSubSelected?.durasi_recovery_time)
|
|
: '-'
|
|
"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Status:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.status_akhir" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">IDPEL/NO METER:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.idpel_nometer" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Nama Pelapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.nama_pelapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Alamat Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.alamat_pelapor"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">No Telp Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.no_telp_pelapor"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Keterangan Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.keterangan_pelapor"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Posko:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.nama_posko" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Sumber Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.media" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Nama Petugas:</h3>
|
|
<InputText :readonly="true" value="" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Posko Asal:</h3>
|
|
<InputText :readonly="true" value="" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Posko Tujuan:</h3>
|
|
<InputText :readonly="true" value="" class-name="flex-1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DetailDialog>
|
|
|
|
<BufferDialog v-if="loadingData || loadingSubData" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
import Type1 from '@/components/Form/FiltersType/Type1.vue'
|
|
import { onMounted, ref } from 'vue'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import {
|
|
DxColumn,
|
|
DxColumnFixing,
|
|
DxExport,
|
|
DxLoadPanel,
|
|
DxPaging,
|
|
DxScrolling,
|
|
DxSearchPanel,
|
|
DxSelection,
|
|
DxSummary,
|
|
DxGroupItem,
|
|
DxPager,
|
|
DxGrouping
|
|
} from 'devextreme-vue/data-grid'
|
|
import { queries, requestGraphQl } from '@/utils/api/api.graphql'
|
|
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
|
import InputText from '@/components/InputText.vue'
|
|
import { formatWaktu } from '@/components/Form/FiltersType/reference'
|
|
import DetailDialog from '@/components/Dialogs/DetailDialog.vue'
|
|
import { apolloClient } from '@/utils/api/api.graphql'
|
|
import { provideApolloClient } from '@vue/apollo-composable'
|
|
import {
|
|
exportToPDF,
|
|
exportToXLSX,
|
|
exportDetailToXLSX,
|
|
exportDetailToPDF
|
|
} from '@/report/Gangguan/Rekap/RGangguan_AlihPosko'
|
|
import BufferDialog from '@/components/Dialogs/BufferDialog.vue'
|
|
|
|
const client = apolloClient()
|
|
provideApolloClient(client)
|
|
const position = { of: '#data' }
|
|
const showIndicator = ref(true)
|
|
const shading = ref(true)
|
|
const showPane = ref(true)
|
|
const data = ref<any[]>([])
|
|
const dataSub = ref<any[]>([])
|
|
const dataSelected = ref<any>()
|
|
const dataSubSelected = ref<any>()
|
|
const dialogDetail = ref(false)
|
|
const loadingData = ref(false)
|
|
const loadingSubData = ref(false)
|
|
const reportMeta = ref({
|
|
uid: { id: 0, name: 'Semua Unit Induk Distribusi/Wilayah' },
|
|
up3: { id: 0, name: 'Semua Unit Pelaksanaan Pelayanan Pelanggan' },
|
|
posko: { id: 0, name: 'Semua Posko' },
|
|
periode: ''
|
|
})
|
|
|
|
const getDetail = async () => {
|
|
loadingSubData.value = true
|
|
const dateValue = filters.value.periode.split(' s/d ')
|
|
const ref = dataSelected.value
|
|
|
|
const query = {
|
|
dateFrom: dateValue[0]
|
|
? dateValue[0].split('-').reverse().join('-')
|
|
: new Date().toISOString().slice(0, 10),
|
|
dateTo: dateValue[1]
|
|
? dateValue[1].split('-').reverse().join('-')
|
|
: new Date().toISOString().slice(0, 10),
|
|
idUid: ref.id_uid,
|
|
idUp3: ref.id_up3,
|
|
idPoskoLama: ref.id_posko_lama,
|
|
idPoskoBaru: ref.id_posko_baru
|
|
}
|
|
|
|
await requestGraphQl(queries.gangguan.rekap.gangguanAlihPoskoDetail, query)
|
|
.then((result) => {
|
|
if (result.data.data != undefined) {
|
|
dataSub.value = result.data.data.detailGangguanAlihPosko
|
|
} else {
|
|
dataSub.value = []
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
.finally(() => {
|
|
loadingSubData.value = false
|
|
dialogDetail.value = true
|
|
})
|
|
}
|
|
|
|
const dataGridRef = ref<DxDataGrid | null>(null)
|
|
const clearSelection = () => {
|
|
const dataGrid = dataGridRef.value!.instance!
|
|
dataGrid.clearSelection()
|
|
}
|
|
const showDetail = () => {
|
|
clearSelection()
|
|
dataSub.value = []
|
|
dataSubSelected.value = null
|
|
// dialogDetail.value = true
|
|
getDetail()
|
|
}
|
|
|
|
const closeDialog = () => {
|
|
dialogDetail.value = false
|
|
}
|
|
|
|
const onExporting = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
exportToPDF(reportMeta.value, data.value)
|
|
} else if (e.format === 'xlsx') {
|
|
exportToXLSX(reportMeta.value, e)
|
|
} else {
|
|
}
|
|
}
|
|
|
|
const onExportingDetail = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
exportDetailToPDF(reportMeta.value, dataSub.value)
|
|
} else if (e.format === 'xlsx') {
|
|
exportDetailToXLSX(reportMeta.value, e)
|
|
} else {
|
|
}
|
|
}
|
|
|
|
const onDataSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSelected.value = selectedRowsData[0]
|
|
showDetail()
|
|
}
|
|
}
|
|
|
|
const onDataSubSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSubSelected.value = selectedRowsData[0]
|
|
}
|
|
}
|
|
|
|
const resetData = () => {
|
|
data.value = []
|
|
dataSub.value = []
|
|
}
|
|
|
|
const filterData = async (params: any) => {
|
|
resetData()
|
|
const dateValue = params.periode.split(' s/d ')
|
|
const { posko, uid, up3 } = params
|
|
|
|
const query = {
|
|
dateFrom: dateValue[0]
|
|
? dateValue[0].split('-').reverse().join('-')
|
|
: new Date().toISOString().slice(0, 10),
|
|
dateTo: dateValue[1]
|
|
? dateValue[1].split('-').reverse().join('-')
|
|
: new Date().toISOString().slice(0, 10),
|
|
posko: posko ? posko.id : 0,
|
|
idUid: uid ? uid.id : 0,
|
|
idUp3: up3 ? up3.id : 0
|
|
}
|
|
|
|
loadingData.value = true
|
|
await requestGraphQl(queries.gangguan.rekap.gangguanAlihPosko, query)
|
|
.then((result) => {
|
|
if (result.data.data != undefined) {
|
|
const refs = [...result.data.data.rekapitulasiGangguanAlihPosko].sort((a: any, b: any) =>
|
|
a.nama_uid.localeCompare(b.nama_uid)
|
|
)
|
|
data.value = refs.map((ref: any, index: number) => {
|
|
return {
|
|
...ref,
|
|
number: index + 1
|
|
}
|
|
})
|
|
} else {
|
|
data.value = []
|
|
}
|
|
|
|
reportMeta.value = filters.value
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
.finally(() => {
|
|
loadingData.value = false
|
|
})
|
|
}
|
|
|
|
const filters = ref()
|
|
onMounted(() => {
|
|
if (import.meta.env.DEV) {
|
|
const refs = [
|
|
{
|
|
id_uid: 120,
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
id_up3: 12000,
|
|
nama_up3: 'UP3 MEDAN',
|
|
id_posko: 120011,
|
|
nama_posko: 'POSKO ULP MEDAN KOTA',
|
|
posko_in: 1,
|
|
posko_out: 1
|
|
},
|
|
{
|
|
id_uid: 103,
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
id_up3: 146,
|
|
nama_up3: 'UP3 KEDIRI',
|
|
id_posko: 514111,
|
|
nama_posko: 'POSKO ULP GROGOL ( DISJATIM )',
|
|
posko_in: 1,
|
|
posko_out: 1
|
|
},
|
|
{
|
|
id_uid: 120,
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
id_up3: 12000,
|
|
nama_up3: 'UP3 MEDAN',
|
|
id_posko: 120011,
|
|
nama_posko: 'POSKO ULP MEDAN KOTA',
|
|
posko_in: 1,
|
|
posko_out: 1
|
|
},
|
|
{
|
|
id_uid: 103,
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
id_up3: 146,
|
|
nama_up3: 'UP3 KEDIRI',
|
|
id_posko: 514111,
|
|
nama_posko: 'POSKO ULP GROGOL ( DISJATIM )',
|
|
posko_in: 1,
|
|
posko_out: 1
|
|
},
|
|
{
|
|
id_uid: 101,
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
id_up3: 52550,
|
|
nama_up3: 'UP3 DEMAK',
|
|
id_posko: 525521,
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
posko_in: 1,
|
|
posko_out: 1
|
|
}
|
|
].sort((a: any, b: any) => a.nama_uid.localeCompare(b.nama_uid))
|
|
|
|
data.value = refs.map((ref: any, index: number) => {
|
|
return {
|
|
...ref,
|
|
number: index + 1
|
|
}
|
|
})
|
|
}
|
|
})
|
|
</script>
|