feat(compete):add DialogCandidates (#1473)

This commit is contained in:
NiceY2T 2025-10-12 15:15:34 +07:00 committed by GitHub
parent 5ae01d1b2d
commit 337c6dbf7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 127 additions and 14 deletions

View file

@ -0,0 +1,91 @@
<script setup lang="ts">
import { ref, watch } from "vue";
import DialogHeader from "@/components/DialogHeader.vue";
import { useCounterMixin } from "@/stores/mixin";
const { date2Thai, dateToISO } = useCounterMixin();
const modal = defineModel<boolean>("modal", { required: true });
const title = defineModel<string>("title", { required: true });
const props = defineProps({
onSubmit: { type: Function, require: true },
});
const date = ref<Date>(new Date()); //
/** ฟังก์ชันบันทึกข้อมูลวันที่ */
function onSubmit() {
if (!date.value) return;
const dateISO = dateToISO(date.value);
props.onSubmit?.(dateISO);
}
/** ฟังก์ชันปิดโมดัล */
function closeModal() {
modal.value = false;
}
/** watch modal รีเซ็ตวันที่ */
watch(modal, (value) => {
if (value) date.value = new Date();
});
</script>
<template>
<q-dialog v-model="modal" persistent class="q-pt-none">
<q-card style="min-width: 450px">
<q-form @submit.prevent="onSubmit">
<DialogHeader :tittle="title" :close="closeModal" />
<q-separator />
<q-card-section>
<div class="col-12">
<datepicker
menu-class-name="modalfix"
v-model="date"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
ref="dateRef"
outlined
dense
hide-bottom-space
:model-value="date != null ? date2Thai(date) : null"
label="วันที่บัญชีใช้ได้ตั้งแต่"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
</q-card-section>
<q-separator />
<q-card-actions align="right">
<q-btn color="public" label="บันทึก" type="submit" />
</q-card-actions>
</q-form>
</q-card>
</q-dialog>
</template>
<style lang="scss" scoped></style>