ปรับ celdar รายการลา
This commit is contained in:
parent
b14413eb98
commit
fd67e56388
1 changed files with 374 additions and 373 deletions
|
|
@ -17,8 +17,8 @@ import listPlugin from "@fullcalendar/list";
|
||||||
/** import type*/
|
/** import type*/
|
||||||
import type { DataDateMonthObject } from "@/modules/05_leave/interface/request/Calendar.ts";
|
import type { DataDateMonthObject } from "@/modules/05_leave/interface/request/Calendar.ts";
|
||||||
import type {
|
import type {
|
||||||
DataCalendar,
|
DataCalendar,
|
||||||
LeaveType,
|
LeaveType,
|
||||||
} from "@/modules/05_leave/interface/response/leave";
|
} from "@/modules/05_leave/interface/response/leave";
|
||||||
|
|
||||||
/** import componest*/
|
/** import componest*/
|
||||||
|
|
@ -36,7 +36,7 @@ const emit = defineEmits(["update:dateYear"]);
|
||||||
const fullName = ref<string>("");
|
const fullName = ref<string>("");
|
||||||
const mainData = ref<DataCalendar[]>([]);
|
const mainData = ref<DataCalendar[]>([]);
|
||||||
const keycloakId = ref<string>(
|
const keycloakId = ref<string>(
|
||||||
keycloak.tokenParsed ? keycloak.tokenParsed.sub!.toString() : ""
|
keycloak.tokenParsed ? keycloak.tokenParsed.sub!.toString() : ""
|
||||||
);
|
);
|
||||||
const modal = ref<boolean>(false);
|
const modal = ref<boolean>(false);
|
||||||
const leaveId = ref<string>("");
|
const leaveId = ref<string>("");
|
||||||
|
|
@ -46,162 +46,161 @@ const leaveId = ref<string>("");
|
||||||
*/
|
*/
|
||||||
const fullCalendar = ref<any>(); //ref calendar
|
const fullCalendar = ref<any>(); //ref calendar
|
||||||
const calendarOptions = ref<any>({
|
const calendarOptions = ref<any>({
|
||||||
plugins: [
|
plugins: [
|
||||||
dayGridPlugin,
|
dayGridPlugin,
|
||||||
timeGridPlugin,
|
timeGridPlugin,
|
||||||
interactionPlugin, // needed for dateClick
|
interactionPlugin, // needed for dateClick
|
||||||
listPlugin,
|
listPlugin,
|
||||||
],
|
],
|
||||||
headerToolbar: false,
|
headerToolbar: false,
|
||||||
initialView: "dayGridMonth",
|
initialView: "dayGridMonth",
|
||||||
initialEvents: [], // alternatively, use the `events` setting to fetch from a feed
|
initialEvents: [], // alternatively, use the `events` setting to fetch from a feed
|
||||||
selectable: true,
|
selectable: true,
|
||||||
dayMaxEvents: true,
|
dayMaxEvents: true,
|
||||||
weekends: true,
|
weekends: true,
|
||||||
locale: "th",
|
locale: "th",
|
||||||
locales: allLocales,
|
locales: allLocales,
|
||||||
expandRows: true,
|
expandRows: true,
|
||||||
nowIndicator: true,
|
nowIndicator: true,
|
||||||
height: "100%",
|
height: "100%",
|
||||||
eventColor: "#4CAF4F",
|
eventColor: "#4CAF4F",
|
||||||
eventTextColor: "#fff",
|
eventTextColor: "#fff",
|
||||||
eventBorderColor: "#50a5fc",
|
eventBorderColor: "#50a5fc",
|
||||||
displayEventTime: false,
|
displayEventTime: false,
|
||||||
editable: true,
|
editable: true,
|
||||||
events: [],
|
events: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
/**Map ตัวแปร dateMonth */
|
/**Map ตัวแปร dateMonth */
|
||||||
const dateMonth = ref<DataDateMonthObject>({
|
const dateMonth = ref<DataDateMonthObject>({
|
||||||
month: new Date().getMonth(),
|
month: new Date().getMonth(),
|
||||||
year: new Date().getFullYear(),
|
year: new Date().getFullYear(),
|
||||||
});
|
});
|
||||||
|
|
||||||
/** function เรียกข้อมูล calendar*/
|
/** function เรียกข้อมูล calendar*/
|
||||||
async function fetchDataCalendar() {
|
async function fetchDataCalendar() {
|
||||||
showLoader();
|
showLoader();
|
||||||
await http
|
await http
|
||||||
.post(config.API.leaveCalendar(), {
|
.post(config.API.leaveCalendar(), {
|
||||||
year: dateMonth.value.year,
|
year: dateMonth.value.year,
|
||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
mainData.value = res.data.result;
|
mainData.value = res.data.result;
|
||||||
|
|
||||||
const double_name = [
|
const double_name = [
|
||||||
...new Set(mainData.value.map((item: DataCalendar) => item.keycloakId)),
|
...new Set(mainData.value.map((item: DataCalendar) => item.keycloakId)),
|
||||||
];
|
];
|
||||||
filterLists.value = [];
|
filterLists.value = [];
|
||||||
for (let i = 1; i <= double_name.length; i++) {
|
for (let i = 1; i <= double_name.length; i++) {
|
||||||
const name = double_name[i - 1];
|
const name = double_name[i - 1];
|
||||||
const filterName = {
|
const filterName = {
|
||||||
id: name,
|
id: name,
|
||||||
name: convertKeycloakId(name),
|
name: convertKeycloakId(name),
|
||||||
color: name === keycloakId.value ? "green" : "grey",
|
color: name === keycloakId.value ? "green" : "grey",
|
||||||
};
|
};
|
||||||
filterLists.value.push(filterName);
|
filterLists.value.push(filterName);
|
||||||
}
|
}
|
||||||
console.log(double_name);
|
const eventData = filterVal.value.map((item: any) => {
|
||||||
|
return mainData.value
|
||||||
if (filterVal.value.length !== 0) {
|
.filter(
|
||||||
const data = mainData.value.filter(
|
(e: DataCalendar) =>
|
||||||
(e: any) => e.keycloakId === keycloakId.value
|
e.keycloakId === item &&
|
||||||
);
|
e.status != "REJECT" &&
|
||||||
|
e.status != "DELETE"
|
||||||
const event = data
|
)
|
||||||
.filter((x: any) => x.status != "REJECT" && x.status != "DELETE")
|
.map((e) => ({
|
||||||
.map((e: DataCalendar) => ({
|
id: e.id,
|
||||||
id: e.id,
|
title: `${e.fullName} (${e.leaveTypeName})`,
|
||||||
title: `${e.fullName} (${e.leaveTypeName})`,
|
start: e.leaveStartDate,
|
||||||
start: e.leaveStartDate,
|
end: new Date(
|
||||||
end: new Date(
|
new Date(e.leaveEndDate).setHours(23, 59, 59)
|
||||||
new Date(e.leaveEndDate).setHours(23, 59, 59)
|
).toISOString(),
|
||||||
).toISOString(),
|
allDay: e.leaveStartDate === e.leaveEndDate ? true : false,
|
||||||
allDay: e.leaveStartDate === e.leaveEndDate ? true : false,
|
color: e.keycloakId === keycloakId.value ? "#DCEDC8" : "#CFD8DC",
|
||||||
color: e.keycloakId === keycloakId.value ? "#DCEDC8" : "#CFD8DC",
|
textColor: "black",
|
||||||
textColor: "black",
|
}));
|
||||||
}));
|
});
|
||||||
calendarOptions.value.events = event;
|
const allEventData = [].concat(...eventData);
|
||||||
console.log(calendarOptions.value.events);
|
calendarOptions.value.events = allEventData;
|
||||||
}
|
// }
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
hideLoader();
|
hideLoader();
|
||||||
});
|
});
|
||||||
await fetchData();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* fetch วันหยุดในปฏิทิน
|
* fetch วันหยุดในปฏิทิน
|
||||||
*/
|
*/
|
||||||
const fetchData = async () => {
|
const fetchData = async () => {
|
||||||
showLoader();
|
showLoader();
|
||||||
await http
|
await http
|
||||||
.get(
|
.get(
|
||||||
config.API.listHolidayHistoryYearMonth(
|
config.API.listHolidayHistoryYearMonth(
|
||||||
dateMonth.value.year,
|
dateMonth.value.year,
|
||||||
dateMonth.value.month + 1
|
dateMonth.value.month + 1
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
const dataNormal = res.data.result.normal;
|
const dataNormal = res.data.result.normal;
|
||||||
const dataSixDays = res.data.result.sixDays;
|
const dataSixDays = res.data.result.sixDays;
|
||||||
const data = dataNormal;
|
const data = dataNormal;
|
||||||
const event = data.map((e: any) => ({
|
const event = data.map((e: any) => ({
|
||||||
id: e.id,
|
id: e.id,
|
||||||
title: `${e.name} `,
|
title: `${e.name} `,
|
||||||
start: e.holidayDate,
|
start: e.holidayDate,
|
||||||
end: new Date(
|
end: new Date(
|
||||||
new Date(e.holidayDate).setHours(23, 59, 59)
|
new Date(e.holidayDate).setHours(23, 59, 59)
|
||||||
).toISOString(),
|
).toISOString(),
|
||||||
allDay: e.holidayDate === e.holidayDate ? true : false,
|
allDay: e.holidayDate === e.holidayDate ? true : false,
|
||||||
color: " #CCE5FF",
|
color: " #CCE5FF",
|
||||||
textColor: "#0080FF",
|
textColor: "#0080FF",
|
||||||
}));
|
}));
|
||||||
calendarOptions.value.events = [
|
calendarOptions.value.events = [
|
||||||
...calendarOptions.value.events,
|
...calendarOptions.value.events,
|
||||||
...event,
|
...event,
|
||||||
];
|
];
|
||||||
// const dataSix = dataSixDays
|
// const dataSix = dataSixDays
|
||||||
// const eventSix = dataSix.map((e: any) => ({
|
// const eventSix = dataSix.map((e: any) => ({
|
||||||
// id: e.id,
|
// id: e.id,
|
||||||
// title: `${e.name} `,
|
// title: `${e.name} `,
|
||||||
// start: e.holidayDate,
|
// start: e.holidayDate,
|
||||||
// end: new Date(new Date(e.holidayDate).setHours(23, 59, 59)).toISOString(),
|
// end: new Date(new Date(e.holidayDate).setHours(23, 59, 59)).toISOString(),
|
||||||
// allDay: e.holidayDate === e.holidayDate ? true : false,
|
// allDay: e.holidayDate === e.holidayDate ? true : false,
|
||||||
// color: "#FFE5CC",
|
// color: "#FFE5CC",
|
||||||
// textColor: "#FF8000",
|
// textColor: "#FF8000",
|
||||||
// }))
|
// }))
|
||||||
// calendarOptions.value.events = [...calendarOptions.value.events, ...eventSix]
|
// calendarOptions.value.events = [...calendarOptions.value.events, ...eventSix]
|
||||||
console.log(calendarOptions.value.events);
|
console.log(calendarOptions.value.events);
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
})
|
})
|
||||||
.finally(async () => {
|
.finally(async () => {
|
||||||
hideLoader();
|
hideLoader();
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**function แปลงkeycloakId */
|
/**function แปลงkeycloakId */
|
||||||
function convertKeycloakId(id: any) {
|
function convertKeycloakId(id: any) {
|
||||||
const filterName = mainData.value.find((e: any) => e.keycloakId === id);
|
const filterName = mainData.value.find((e: any) => e.keycloakId === id);
|
||||||
return filterName?.fullName;
|
return filterName?.fullName;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** function เรียกประเภทการลา */
|
/** function เรียกประเภทการลา */
|
||||||
const leaveType = ref<LeaveType[]>([]);
|
const leaveType = ref<LeaveType[]>([]);
|
||||||
async function fectOptionType() {
|
async function fectOptionType() {
|
||||||
await http
|
await http
|
||||||
.get(config.API.leaveType())
|
.get(config.API.leaveType())
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
leaveType.value = res.data.result;
|
leaveType.value = res.data.result;
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -209,17 +208,17 @@ async function fectOptionType() {
|
||||||
* @param val datepicker แบบเลือกปีและเดือน
|
* @param val datepicker แบบเลือกปีและเดือน
|
||||||
*/
|
*/
|
||||||
function monthYearThai(val: DataDateMonthObject) {
|
function monthYearThai(val: DataDateMonthObject) {
|
||||||
if (val == null) return "";
|
if (val == null) return "";
|
||||||
else return monthYear2Thai(val.month, val.year);
|
else return monthYear2Thai(val.month, val.year);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** function อัปเดท Calendar */
|
/** function อัปเดท Calendar */
|
||||||
async function updateMonth() {
|
async function updateMonth() {
|
||||||
await fetchDataCalendar();
|
await fetchDataCalendar();
|
||||||
await fetchData();
|
await fetchData();
|
||||||
const calen = fullCalendar.value.getApi();
|
const calen = fullCalendar.value.getApi();
|
||||||
const date = new Date(dateMonth.value.year, dateMonth.value.month);
|
const date = new Date(dateMonth.value.year, dateMonth.value.month);
|
||||||
calen.gotoDate(date);
|
calen.gotoDate(date);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -227,234 +226,236 @@ async function updateMonth() {
|
||||||
* @param id การลา
|
* @param id การลา
|
||||||
*/
|
*/
|
||||||
async function onCilckview(id: string) {
|
async function onCilckview(id: string) {
|
||||||
modal.value = true;
|
modal.value = true;
|
||||||
leaveId.value = id;
|
leaveId.value = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** function closePopup*/
|
/** function closePopup*/
|
||||||
async function onClickClose() {
|
async function onClickClose() {
|
||||||
modal.value = false;
|
modal.value = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** filter calendar left */
|
/** filter calendar left */
|
||||||
const filterLists = ref<any>([]);
|
const filterLists = ref<any>([]);
|
||||||
const filterVal = ref<any>([]);
|
const filterVal = ref<any>([keycloakId.value]);
|
||||||
|
|
||||||
/**** ตรวจสอบว่ามีการส่งข้อมูลเข้ามาที่Calendar */
|
/**** ตรวจสอบว่ามีการส่งข้อมูลเข้ามาที่Calendar */
|
||||||
watch(
|
watch(
|
||||||
() => filterVal.value,
|
() => filterVal.value,
|
||||||
() => {
|
() => {
|
||||||
const eventData = filterVal.value.map((item: any) => {
|
const eventData = filterVal.value.map((item: any) => {
|
||||||
return mainData.value
|
return mainData.value
|
||||||
.filter(
|
.filter(
|
||||||
(e: DataCalendar) =>
|
(e: DataCalendar) =>
|
||||||
e.keycloakId === item &&
|
e.keycloakId === item &&
|
||||||
e.status != "REJECT" &&
|
e.status != "REJECT" &&
|
||||||
e.status != "DELETE"
|
e.status != "DELETE"
|
||||||
)
|
)
|
||||||
.map((e) => ({
|
.map((e) => ({
|
||||||
id: e.id,
|
id: e.id,
|
||||||
title: `${e.fullName} (${e.leaveTypeName})`,
|
title: `${e.fullName} (${e.leaveTypeName})`,
|
||||||
start: e.leaveStartDate,
|
start: e.leaveStartDate,
|
||||||
end: new Date(
|
end: new Date(
|
||||||
new Date(e.leaveEndDate).setHours(23, 59, 59)
|
new Date(e.leaveEndDate).setHours(23, 59, 59)
|
||||||
).toISOString(),
|
).toISOString(),
|
||||||
allDay: e.leaveStartDate === e.leaveEndDate ? true : false,
|
allDay: e.leaveStartDate === e.leaveEndDate ? true : false,
|
||||||
color: e.keycloakId === keycloakId.value ? "#DCEDC8" : "#CFD8DC",
|
color: e.keycloakId === keycloakId.value ? "#DCEDC8" : "#CFD8DC",
|
||||||
textColor: "black",
|
textColor: "black",
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
const allEventData = [].concat(...eventData);
|
const allEventData = [].concat(...eventData);
|
||||||
calendarOptions.value.events = allEventData;
|
calendarOptions.value.events = allEventData;
|
||||||
}
|
fetchData();
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
/**Hook */
|
/**Hook */
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
filterVal.value.push(keycloakId.value);
|
filterVal.value.push(keycloakId.value);
|
||||||
await fetchDataCalendar();
|
await fetchDataCalendar();
|
||||||
await fectOptionType();
|
await fetchData();
|
||||||
|
await fectOptionType();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-12 col-md-3 q-mt-sm q-pr-sm row">
|
<div class="col-sm-12 col-md-3 q-mt-sm q-pr-sm row">
|
||||||
<q-card class="col-12" flat bordered>
|
<q-card class="col-12" flat bordered>
|
||||||
<div class="q-gutter-sm col-12">
|
<div class="q-gutter-sm col-12">
|
||||||
<q-list class="rounded-borders q-pt-sm" dense>
|
<q-list class="rounded-borders q-pt-sm" dense>
|
||||||
<q-item
|
<q-item
|
||||||
v-for="(item, i) in filterLists"
|
v-for="(item, i) in filterLists"
|
||||||
:key="i"
|
:key="i"
|
||||||
tag="label"
|
tag="label"
|
||||||
v-ripple
|
v-ripple
|
||||||
>
|
>
|
||||||
<q-checkbox
|
<q-checkbox
|
||||||
size="sm"
|
size="sm"
|
||||||
v-model="filterVal"
|
v-model="filterVal"
|
||||||
:val="item.id"
|
:val="item.id"
|
||||||
:color="item.color"
|
:color="item.color"
|
||||||
/>
|
/>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label>{{ item.name }}</q-item-label>
|
<q-item-label>{{ item.name }}</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
</q-list>
|
</q-list>
|
||||||
</div>
|
</div>
|
||||||
</q-card>
|
</q-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-12 col-md-9 row">
|
<div class="col-sm-12 col-md-9 row">
|
||||||
<div class="q-mt-sm col-12">
|
<div class="q-mt-sm col-12">
|
||||||
<div class="row col-12 q-gutter-sm">
|
<div class="row col-12 q-gutter-sm">
|
||||||
<div class="demo-app-main">
|
<div class="demo-app-main">
|
||||||
<q-card
|
<q-card
|
||||||
bordered
|
bordered
|
||||||
flat
|
flat
|
||||||
class="q-pa-sm q-mb-sm col-12 row bg-grey-1 shadow-0"
|
class="q-pa-sm q-mb-sm col-12 row bg-grey-1 shadow-0"
|
||||||
>
|
>
|
||||||
<div class="items-center col-12 row q-col-gutter-sm">
|
<div class="items-center col-12 row q-col-gutter-sm">
|
||||||
<!-- filter เลือกเดือนปี -->
|
<!-- filter เลือกเดือนปี -->
|
||||||
<datepicker
|
<datepicker
|
||||||
v-model="dateMonth"
|
v-model="dateMonth"
|
||||||
:locale="'th'"
|
:locale="'th'"
|
||||||
autoApply
|
autoApply
|
||||||
month-picker
|
month-picker
|
||||||
:enableTimePicker="false"
|
:enableTimePicker="false"
|
||||||
@update:modelValue="updateMonth"
|
@update:modelValue="updateMonth"
|
||||||
>
|
>
|
||||||
<template #year="{ year }">{{ year + 543 }}</template>
|
<template #year="{ year }">{{ year + 543 }}</template>
|
||||||
<template #year-overlay-value="{ value }">{{
|
<template #year-overlay-value="{ value }">{{
|
||||||
parseInt(value + 543)
|
parseInt(value + 543)
|
||||||
}}</template>
|
}}</template>
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
<q-input
|
<q-input
|
||||||
:model-value="monthYearThai(dateMonth)"
|
:model-value="monthYearThai(dateMonth)"
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
bg-color="white"
|
bg-color="white"
|
||||||
style="width: 130px"
|
style="width: 130px"
|
||||||
>
|
>
|
||||||
<template v-slot:prepend>
|
<template v-slot:prepend>
|
||||||
<q-icon
|
<q-icon
|
||||||
name="event"
|
name="event"
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
style="color: var(--q-primary)"
|
style="color: var(--q-primary)"
|
||||||
>
|
>
|
||||||
</q-icon>
|
</q-icon>
|
||||||
</template>
|
</template>
|
||||||
</q-input>
|
</q-input>
|
||||||
</template>
|
</template>
|
||||||
</datepicker>
|
</datepicker>
|
||||||
</div>
|
</div>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
||||||
<div class="main-content">
|
<div class="main-content">
|
||||||
<FullCalendar
|
<FullCalendar
|
||||||
ref="fullCalendar"
|
ref="fullCalendar"
|
||||||
class="demo-app-calendar"
|
class="demo-app-calendar"
|
||||||
:options="calendarOptions"
|
:options="calendarOptions"
|
||||||
>
|
>
|
||||||
<template v-slot:eventContent="arg">
|
<template v-slot:eventContent="arg">
|
||||||
<div
|
<div
|
||||||
v-if="arg.event.textColor == 'black'"
|
v-if="arg.event.textColor == 'black'"
|
||||||
class="row col-12 items-center no-wrap"
|
class="row col-12 items-center no-wrap"
|
||||||
:style="`background: + ${arg.event.color}`"
|
:style="`background: + ${arg.event.color}`"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="textHover col-10"
|
class="textHover col-10"
|
||||||
@click="onCilckview(arg.event.id)"
|
@click="onCilckview(arg.event.id)"
|
||||||
>
|
>
|
||||||
{{ arg.event.title }}
|
{{ arg.event.title }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
class="row col-12 items-center no-wrap"
|
class="row col-12 items-center no-wrap"
|
||||||
:style="`background: + ${arg.event.color}`"
|
:style="`background: + ${arg.event.color}`"
|
||||||
>
|
>
|
||||||
<div class="textHover col-10">
|
<div class="textHover col-10">
|
||||||
{{ arg.event.title }}
|
{{ arg.event.title }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</FullCalendar>
|
</FullCalendar>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row q-col-gutter-lg justify-end">
|
<div class="row q-col-gutter-lg justify-end">
|
||||||
<div class="items-center row">
|
<div class="items-center row">
|
||||||
<q-icon
|
<q-icon
|
||||||
size="10px"
|
size="10px"
|
||||||
color="blue"
|
color="blue"
|
||||||
name="mdi-circle"
|
name="mdi-circle"
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
/>
|
/>
|
||||||
<span class="text-caption text-grey-8">วันหยุด</span>
|
<span class="text-caption text-grey-8">วันหยุด</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="items-center row">
|
<div class="items-center row">
|
||||||
<q-icon
|
<q-icon
|
||||||
size="10px"
|
size="10px"
|
||||||
color="green-7"
|
color="green-7"
|
||||||
name="mdi-circle"
|
name="mdi-circle"
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
/>
|
/>
|
||||||
<span class="text-caption text-grey-8">การลาของฉัน</span>
|
<span class="text-caption text-grey-8">การลาของฉัน</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="items-center row">
|
<div class="items-center row">
|
||||||
<q-icon
|
<q-icon
|
||||||
size="10px"
|
size="10px"
|
||||||
color="grey-6"
|
color="grey-6"
|
||||||
name="mdi-circle"
|
name="mdi-circle"
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
/>
|
/>
|
||||||
<span class="text-caption text-grey-8">การลาของบุคคลอื่น</span>
|
<span class="text-caption text-grey-8">การลาของบุคคลอื่น</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DialogDetail
|
<DialogDetail
|
||||||
:modal="modal"
|
:modal="modal"
|
||||||
:leaveId="leaveId"
|
:leaveId="leaveId"
|
||||||
:onClickClose="onClickClose"
|
:onClickClose="onClickClose"
|
||||||
:leaveType="leaveType"
|
:leaveType="leaveType"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scope lang="scss">
|
<style scope lang="scss">
|
||||||
.main-content {
|
.main-content {
|
||||||
height: 70vh;
|
height: 70vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.padding-content {
|
.padding-content {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-app-main {
|
.demo-app-main {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
/* padding: 3em; */
|
/* padding: 3em; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc {
|
.fc {
|
||||||
/* the calendar root */
|
/* the calendar root */
|
||||||
max-width: 1100px;
|
max-width: 1100px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-day-today {
|
.fc-day-today {
|
||||||
background-color: #f8f8f8 !important;
|
background-color: #f8f8f8 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-day-today .fc-daygrid-day-number {
|
.fc-day-today .fc-daygrid-day-number {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
/* border: 2px solid #17a259; */
|
/* border: 2px solid #17a259; */
|
||||||
/* border-radius: 50%;
|
/* border-radius: 50%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
width: 25px;
|
width: 25px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
@ -463,123 +464,123 @@ onMounted(async () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-day-today .fc-daygrid-day-frame {
|
.fc-day-today .fc-daygrid-day-frame {
|
||||||
padding: 5%;
|
padding: 5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc .fc-button-group > .fc-button {
|
.fc .fc-button-group > .fc-button {
|
||||||
color: black;
|
color: black;
|
||||||
background-color: #fafafa;
|
background-color: #fafafa;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc .fc-button-group > .fc-button:active {
|
.fc .fc-button-group > .fc-button:active {
|
||||||
color: white;
|
color: white;
|
||||||
background-color: #22a15e;
|
background-color: #22a15e;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc .fc-button-group > .fc-button.fc-button-active {
|
.fc .fc-button-group > .fc-button.fc-button-active {
|
||||||
color: white;
|
color: white;
|
||||||
background-color: #22a15e;
|
background-color: #22a15e;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-header-toolbar {
|
.fc-header-toolbar {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding: 0px 10px 0px 10px;
|
padding: 0px 10px 0px 10px;
|
||||||
border-radius: 10px 10px 0px 0px;
|
border-radius: 10px 10px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc .fc-scrollgrid-liquid > thead {
|
.fc .fc-scrollgrid-liquid > thead {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dp-custom-cell {
|
.dp-custom-cell {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dp__today {
|
.dp__today {
|
||||||
border: 1px solid var(--q-primary);
|
border: 1px solid var(--q-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dp__range_end,
|
.dp__range_end,
|
||||||
.dp__range_start,
|
.dp__range_start,
|
||||||
.dp__active_date {
|
.dp__active_date {
|
||||||
background: var(--q-primary);
|
background: var(--q-primary);
|
||||||
color: var(--dp-primary-text-color);
|
color: var(--dp-primary-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.datepicker .q-field__label {
|
.datepicker .q-field__label {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datepicker .q-field__messages {
|
.datepicker .q-field__messages {
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datepicker .q-field__native {
|
.datepicker .q-field__native {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
color: var(--q-primary) !important;
|
color: var(--q-primary) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datepicker .q-field__prepend {
|
.datepicker .q-field__prepend {
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datepicker .q-field__append {
|
.datepicker .q-field__append {
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datepicker .q-field__after {
|
.datepicker .q-field__after {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc .fc-popover {
|
.fc .fc-popover {
|
||||||
z-index: 6000;
|
z-index: 6000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
|
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
|
||||||
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
|
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.subName {
|
.subName {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.subInput {
|
.subInput {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-event {
|
.fc-event {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-color: transparent !important;
|
border-color: transparent !important;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-event-main {
|
.fc-event-main {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
|
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
|
||||||
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
|
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-theme-standard td,
|
.fc-theme-standard td,
|
||||||
.fc-theme-standard th {
|
.fc-theme-standard th {
|
||||||
border: 1px solid #ebe9f1;
|
border: 1px solid #ebe9f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.textHover:hover {
|
.textHover:hover {
|
||||||
color: var(--q-primary);
|
color: var(--q-primary);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue