73 lines
2.2 KiB
Vue
Executable File
73 lines
2.2 KiB
Vue
Executable File
<script setup lang="ts">
|
|
import Select from '@/components/Select.vue';
|
|
import DatePicker from '@/components/DatePicker.vue';
|
|
import { selectedUid, selectedUp3Posko, selectedPosko, fetchUid, itemsUid, itemsUp3, itemsPosko } from './reference';
|
|
import { onMounted, ref } from 'vue';
|
|
const uidPlaceholder = 'Semua Distribusi/Wilayah';
|
|
const up3Placeholder = 'Semua Area';
|
|
const poskoPlaceholder = 'Semua Unit Layanan Pelanggan';
|
|
const up3 = ref({ id: 0, name: up3Placeholder });
|
|
const uid = ref({ id: 0, name: uidPlaceholder });
|
|
const posko = ref({ id: 0, name: poskoPlaceholder });
|
|
const emit = defineEmits(['update:filters'])
|
|
const data = ref({
|
|
uid: uid.value,
|
|
up3: up3.value,
|
|
posko: posko.value,
|
|
periode: '',
|
|
})
|
|
const setUid = (value: any) => {
|
|
uid.value = value;
|
|
selectedUid(value);
|
|
up3.value = { id: 0, name: up3Placeholder };
|
|
data.value.uid = value;
|
|
};
|
|
|
|
const setUp3 = (value: any) => {
|
|
up3.value = value;
|
|
selectedUp3Posko(value);
|
|
posko.value = { id: 0, name: poskoPlaceholder };
|
|
data.value.up3 = value;
|
|
};
|
|
|
|
const setPosko = (value: any) => {
|
|
posko.value = value;
|
|
selectedPosko(value);
|
|
data.value.posko = value;
|
|
};
|
|
onMounted(() => {
|
|
emit('update:filters', data.value)
|
|
fetchUid()
|
|
})
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div class="grid grid-cols-1 gap-4 md:grid-cols-2">
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Distribusi/Wilayah:</label>
|
|
<Select :data="itemsUid" @update:selected="setUid($event)" :placeholder="uidPlaceholder" :selected="uid" />
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Area:</label>
|
|
<Select @update:selected="setUp3($event)" :data="itemsUp3" :selected="up3" :placeholder="up3Placeholder" />
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Posko:</label>
|
|
<Select @update:selected="setPosko($event)" :data="itemsPosko" :selected="posko"
|
|
:placeholder="poskoPlaceholder" />
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Periode Tanggal:</label>
|
|
|
|
<DatePicker @update:date-value="(value) => data.periode = value" />
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|