hrms-mgt/src/modules/09_leave/components/1_Work/ToolBar.vue

124 lines
3.2 KiB
Vue
Raw Normal View History

2023-10-20 16:57:32 +07:00
<script setup lang="ts">
import { ref } from "vue";
/** importStores */
2023-10-20 16:57:32 +07:00
import { useCounterMixin } from "@/stores/mixin";
import { useWorklistDataStore } from "@/modules/09_leave/stores/WorkStore";
/** useStore */
2023-10-20 16:57:32 +07:00
const workStore = useWorklistDataStore();
const mixin = useCounterMixin();
const { date2Thai } = mixin;
const props = defineProps({
option: {
type: Object,
require: true,
},
});
const filetStatus = ref<string>("");
const keyword = ref<string>("");
/** Functicon หาค่ามากสุดและปิดวันที่ไม่ให้เลือกวันล่วงหน้า*/
function calculateMaxDate() {
const today = new Date();
today.setDate(today.getDate());
return today;
}
2023-10-20 16:57:32 +07:00
</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">
2023-10-20 16:57:32 +07:00
<datepicker
menu-class-name="modalfix"
v-model="workStore.selectDate"
:locale="'th'"
autoApply
:enableTimePicker="false"
week-start="0"
:max-date="calculateMaxDate()"
2023-10-20 16:57:32 +07:00
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
2023-10-24 11:53:53 +07:00
for="selectDate"
2023-10-20 16:57:32 +07:00
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">
2023-10-20 16:57:32 +07:00
<q-select
2023-10-24 11:53:53 +07:00
for="selectStatus"
2023-10-20 16:57:32 +07:00
emit-value
map-options
outlined
dense
option-value="id"
option-label="name"
label="สถานะ"
use-input
v-model="filetStatus"
:options="props.option as readonly any[] || undefined"
2023-10-20 16:57:32 +07:00
>
<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">
2023-10-24 11:53:53 +07:00
<q-input
for="filterTable"
dense
outlined
v-model="keyword"
2023-10-24 11:53:53 +07:00
label="ค้นหา"
debounce="300"
>
<template v-slot:append>
<q-icon name="search" />
</template>
</q-input>
2023-10-20 16:57:32 +07:00
</div>
<div class="col-xs-12 col-sm-3 col-md-2">
2023-10-20 16:57:32 +07:00
<q-select
2023-10-24 11:53:53 +07:00
for="visibleColumns"
2023-10-20 16:57:32 +07:00
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>
2023-10-20 16:57:32 +07:00
</template>
<style scoped></style>