[WIP] Фикс при добавлении нового расписания, удалил ненужные переменные

This commit is contained in:
megavrilinvv
2022-12-29 17:41:38 +03:00
parent 35bddc227b
commit 01e5ed06b2
4 changed files with 5 additions and 26 deletions

View File

@@ -8,11 +8,9 @@
@switch-next-month="switchNextMonth"
)
schedule-body(
:employee-list="employeeList",
:schedules-employee="fetchSchedulesEmployee",
:schedule-list="scheduleList",
:serialized="serialized",
:data-schedule="dataSchedule",
:buttons="buttons",
:start-month="startMonth",
:clear-employee="clearEmployee",
@@ -21,9 +19,7 @@
@schedules="distributeRequest"
)
schedule-bar(
:data-schedule="dataSchedule",
:buttons="buttons",
:clear-employee="clearEmployee",
:times="times",
:create-schedules="postCreateSchedules",
)
@@ -44,12 +40,6 @@ export default {
scheduleList: [],
clearEmployee: [],
serialized: [],
dataSchedule: {
status: "",
date: null,
startTime: "",
endTime: "",
},
times: { start_time: "", end_time: "" },
timesShift: { start_time: "", end_time: "" },
buttons: [
@@ -143,7 +133,6 @@ export default {
}
});
this.serialized = serialized;
this.filterEmployee();
},
filterEmployee() {
@@ -219,7 +208,7 @@ export default {
switchNextMonth() {
this.startMonth = this.startMonth.clone().add(1, "M");
},
houres() {
setTime() {
let now = new Date();
let hour = now.getHours();
let minute = now.getMinutes();
@@ -240,7 +229,7 @@ export default {
},
mounted() {
this.fetchSchedules();
this.houres();
this.setTime();
},
};
</script>