upload new version

This commit is contained in:
Warunee Tamkoo 2023-11-07 11:17:13 +07:00
parent dd5a007ac1
commit ab5bc54f6a
47 changed files with 1881 additions and 0 deletions

View file

@ -0,0 +1,49 @@
<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"
color="secondary"
:class="$q.screen.gt.xs ? 'q-px-sm' : ''"
:label="$q.screen.gt.xs ? 'เพิ่มรายการลงเวลากรณีพิเศษ' : ''"
@click="onClickopen"
/>
</div>
</div>
<Popup :modal="modalPopup" :title="titleName" :clickClose="onClickClose" />
</template>
<style scoped></style>