2023-11-07 11:17:13 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref } from "vue";
|
|
|
|
|
import type { DataOption } from "@/interface/index/Main";
|
|
|
|
|
import Popup from "@/components/PopUp.vue";
|
|
|
|
|
// import HeaderPopup from "@/components/HeaderPopup.vue";
|
|
|
|
|
// import FormTime from "@/components/FormTime.vue";
|
|
|
|
|
|
|
|
|
|
const filterYear = ref<string>("");
|
|
|
|
|
const yearOption = ref<DataOption[]>([{ id: "2566", name: "2566" }]);
|
|
|
|
|
const titleName = ref<string>("เพิ่มรายการลงเวลากรณีพิเศษ");
|
|
|
|
|
|
|
|
|
|
const modalPopup = ref<boolean>(false);
|
|
|
|
|
function onClickopen() {
|
|
|
|
|
modalPopup.value = true;
|
|
|
|
|
}
|
|
|
|
|
function onClickClose() {
|
|
|
|
|
modalPopup.value = false;
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<div class="q-pb-sm row">
|
|
|
|
|
<div class="items-center col-12 row q-gutter-sm">
|
|
|
|
|
<q-select
|
|
|
|
|
dense
|
|
|
|
|
outlined
|
|
|
|
|
style="width: 180px"
|
|
|
|
|
label="ปีประวัติลงเวลา"
|
|
|
|
|
v-model="filterYear"
|
|
|
|
|
:options="yearOption"
|
|
|
|
|
option-label="name"
|
|
|
|
|
option-value="id"
|
|
|
|
|
/>
|
|
|
|
|
<q-space />
|
|
|
|
|
<q-btn
|
|
|
|
|
unelevated
|
|
|
|
|
outline
|
|
|
|
|
icon="add"
|
2023-11-07 17:47:55 +07:00
|
|
|
color="light-blue"
|
|
|
|
|
:class="$q.screen.gt.xs ? 'q-px-sm bg-blue-1' : ''"
|
2023-11-07 11:17:13 +07:00
|
|
|
:label="$q.screen.gt.xs ? 'เพิ่มรายการลงเวลากรณีพิเศษ' : ''"
|
|
|
|
|
@click="onClickopen"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Popup :modal="modalPopup" :title="titleName" :clickClose="onClickClose" />
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|