172 lines
4.6 KiB
Vue
172 lines
4.6 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
|
|
/** importType*/
|
|
import type { DataOption } from "@/modules/09_leave/interface/index/Main";
|
|
|
|
/** importStores */
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useWorklistDataStore } from "@/modules/09_leave/stores/WorkStore";
|
|
/** useStore */
|
|
const workStore = useWorklistDataStore();
|
|
const mixin = useCounterMixin();
|
|
const { date2Thai } = mixin;
|
|
|
|
/** props จาก Tab 1*/
|
|
const props = defineProps({
|
|
filetStatus: {
|
|
type: String,
|
|
require: true,
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(["update:pagination"]);
|
|
|
|
/** ตัแปร filter**/
|
|
const filetStatus = ref<string>(
|
|
props.filetStatus?.toString() || "default-value"
|
|
);
|
|
const keyword = ref<string>("");
|
|
const optionMain = ref<DataOption[]>([
|
|
{ id: "ALL", name: "ทั้งหมด" },
|
|
{ id: "NORMAL", name: "ปกติ" },
|
|
{ id: "LATE", name: "สาย" },
|
|
{ id: "ABSENT", name: "ขาดราชการ" },
|
|
]);
|
|
const option = ref<DataOption[]>(optionMain.value);
|
|
|
|
/**
|
|
* function updateProps
|
|
* @param newPagination paging
|
|
* @param keyword คำค้น
|
|
* @param status สถานะ
|
|
*/
|
|
function updateProp(newPagination: any, keyword: string, status: string) {
|
|
// ส่ง event ไปยัง parent component เพื่ออัพเดทค่า props
|
|
emit("update:pagination", newPagination, 1, keyword, status);
|
|
}
|
|
|
|
/** function ค้นหาข้อมูลแล้วไปอัปเดท props*/
|
|
function filterFn() {
|
|
updateProp([], keyword.value, filetStatus.value);
|
|
}
|
|
|
|
/**
|
|
* function ค้นหาข้อมูลใน option
|
|
* @param val คำค้นหา
|
|
* @param update function
|
|
*/
|
|
function filterOptionFn(val: string, update: Function) {
|
|
update(() => {
|
|
option.value = optionMain.value.filter(
|
|
(e: any) => e.name.search(val) !== -1
|
|
);
|
|
});
|
|
}
|
|
|
|
/** Functicon หาค่ามากสุดและปิดวันที่ไม่ให้เลือกวันล่วงหน้า*/
|
|
function calculateMaxDate() {
|
|
const today = new Date();
|
|
today.setDate(today.getDate());
|
|
return today;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="row col-12 q-col-gutter-sm q-mb-sm">
|
|
<div class="col-xs-12 col-sm-3 col-md-2">
|
|
<datepicker
|
|
menu-class-name="modalfix"
|
|
v-model="workStore.selectDate"
|
|
:locale="'th'"
|
|
autoApply
|
|
:enableTimePicker="false"
|
|
week-start="0"
|
|
:max-date="calculateMaxDate()"
|
|
@update:model-value="filterFn"
|
|
>
|
|
<template #year="{ year }">{{ year + 543 }}</template>
|
|
<template #year-overlay-value="{ value }">{{
|
|
parseInt(value + 543)
|
|
}}</template>
|
|
<template #trigger>
|
|
<q-input
|
|
for="selectDate"
|
|
dense
|
|
outlined
|
|
lazy-rules
|
|
:model-value="
|
|
workStore.selectDate !== null
|
|
? date2Thai(workStore.selectDate)
|
|
: null
|
|
"
|
|
hide-bottom-space
|
|
:label="`${'วันที่'}`"
|
|
>
|
|
<template v-slot:prepend>
|
|
<q-icon name="event" class="cursor-pointer text-primary">
|
|
</q-icon>
|
|
</template>
|
|
</q-input>
|
|
</template>
|
|
</datepicker>
|
|
</div>
|
|
<div class="col-xs-12 col-sm-3 col-md-2">
|
|
<q-select
|
|
for="selectStatus"
|
|
emit-value
|
|
map-options
|
|
outlined
|
|
dense
|
|
option-value="id"
|
|
option-label="name"
|
|
label="สถานะ"
|
|
use-input
|
|
v-model="filetStatus"
|
|
:options="option"
|
|
@update:model-value="filterFn"
|
|
@filter="filterOptionFn"
|
|
>
|
|
<template v-slot:no-option>
|
|
<q-item>
|
|
<q-item-section class="text-grey"> ไม่มีข้อมูล </q-item-section>
|
|
</q-item>
|
|
</template></q-select
|
|
>
|
|
</div>
|
|
<q-space />
|
|
<div class="col-xs-12 col-sm-3 col-md-2">
|
|
<q-input
|
|
for="filterTable"
|
|
dense
|
|
outlined
|
|
v-model="keyword"
|
|
label="ค้นหา"
|
|
debounce="300"
|
|
@keydown.enter.prevent="filterFn"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
</template>
|
|
</q-input>
|
|
</div>
|
|
<div class="col-xs-12 col-sm-3 col-md-2">
|
|
<q-select
|
|
for="visibleColumns"
|
|
v-model="workStore.visibleColumns"
|
|
multiple
|
|
outlined
|
|
dense
|
|
options-dense
|
|
:display-value="$q.lang.table.columns"
|
|
emit-value
|
|
map-options
|
|
:options="workStore.columns"
|
|
option-value="name"
|
|
options-cover
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|