diff --git a/src/modules/11_discipline/components/2_InvestigateFacts/CalandarDialog.vue b/src/modules/11_discipline/components/2_InvestigateFacts/CalandarDialog.vue index 59df5232c..4e7b2d407 100644 --- a/src/modules/11_discipline/components/2_InvestigateFacts/CalandarDialog.vue +++ b/src/modules/11_discipline/components/2_InvestigateFacts/CalandarDialog.vue @@ -1,6 +1,26 @@ @@ -32,8 +171,333 @@ const props = defineProps({ - + + + + + + + + + {{ year + 543 }} + {{ + parseInt(value + 543) + }} + + + + + + + + + + + + + + + + + {{ arg.event.title }} + + + + + + + + + สืบสวน + + + + + + + + + + + + + + + + + รายละเอียดของ{{ title }} + + ขอยกเลิก{{ title }} + + + + + + + + เขียนที่ + {{ location }} + เรื่องและเหตุผลการลา + {{ subject }} + วัน เดือน ปีเริ่มต้น + {{ dateStart }} + วัน เดือน ปีสิ้นสุด + {{ dateEnd }} + จำนวนวันที่ลา + {{ numDate }} + สถานที่ติดต่อขณะลา + {{ place }} + หมายเลขโทรศัพท์ + {{ phone }} + + + + + + + + + + + + + + + + diff --git a/src/modules/11_discipline/components/2_InvestigateFacts/Calendar.vue b/src/modules/11_discipline/components/2_InvestigateFacts/Calendar.vue index a061b9dd9..a0b593deb 100644 --- a/src/modules/11_discipline/components/2_InvestigateFacts/Calendar.vue +++ b/src/modules/11_discipline/components/2_InvestigateFacts/Calendar.vue @@ -22,7 +22,7 @@ const $q = useQuasar(); /** * Option ของปฏิทิน */ - +const loadCalendar = ref(false); const fullCalendar = ref(); //ref calendar const calendarOptions = ref({ plugins: [ diff --git a/src/modules/11_discipline/components/3_InvestigateDisciplinary/CalandarDialog.vue b/src/modules/11_discipline/components/3_InvestigateDisciplinary/CalandarDialog.vue index 0666fd8fe..869879430 100644 --- a/src/modules/11_discipline/components/3_InvestigateDisciplinary/CalandarDialog.vue +++ b/src/modules/11_discipline/components/3_InvestigateDisciplinary/CalandarDialog.vue @@ -1,6 +1,25 @@ - + + - + + + + + + + + + {{ year + 543 }} + {{ + parseInt(value + 543) + }} + + + + + + + + + + + + + + + + + {{ arg.event.title }} + + + + + + + + + สอบสวน + + + + + + + - + + - + + + + + รายละเอียดของ{{ title }} + + ขอยกเลิก{{ title }} + + + + + + + + เขียนที่ + {{ location }} + เรื่องและเหตุผลการลา + {{ subject }} + วัน เดือน ปีเริ่มต้น + {{ dateStart }} + วัน เดือน ปีสิ้นสุด + {{ dateEnd }} + จำนวนวันที่ลา + {{ numDate }} + สถานที่ติดต่อขณะลา + {{ place }} + หมายเลขโทรศัพท์ + {{ phone }} + + + + + - - {{ props.btnTitle }} - - {{ props.btnTitle }} - - --> + + + + + + + + + + + + diff --git a/src/modules/11_discipline/interface/response/Main.ts b/src/modules/11_discipline/interface/response/Main.ts index 10683a468..37ebe3441 100644 --- a/src/modules/11_discipline/interface/response/Main.ts +++ b/src/modules/11_discipline/interface/response/Main.ts @@ -2,5 +2,17 @@ interface DataOptionRes { organizationId: string; organizationName: string; } +interface CaledarInvestigatefacts { + id: string; + title: string; + investigationDateStart: Date; + investigationDateEnd: Date; +} +interface CaledarDisciplinary { + id: string; + title: string; + disciplinaryDateEnd: Date; + disciplinaryDateStart: Date; +} -export type { DataOptionRes }; +export type { DataOptionRes, CaledarInvestigatefacts, CaledarDisciplinary }; diff --git a/src/modules/11_discipline/interface/response/investigate.ts b/src/modules/11_discipline/interface/response/investigate.ts index 609bd27b9..2d69dc5c7 100644 --- a/src/modules/11_discipline/interface/response/investigate.ts +++ b/src/modules/11_discipline/interface/response/investigate.ts @@ -44,4 +44,5 @@ interface ocListType { organizationId: string; organizationName: string; } + export type { ListData, ArrayPerson, ocListType, ArrayPersonAdd };