WIP Добавила модалку

This commit is contained in:
Daria Golova
2023-05-04 17:53:43 +03:00
parent 8e28adde77
commit 0390e96eb4
8 changed files with 523 additions and 73 deletions

View File

@@ -60,6 +60,73 @@ const state = () => ({
avatar: "",
benefitData: [],
events: [],
protocolsData: [
{
id: 1,
employee: {
last_name: "Захаров",
first_name: "Алексей",
patronymic: "Сергеевич",
job_title: "Хирург",
photo: "",
},
start: "2023-03-23T13:00:00+03:00",
end: "2023-03-23T13:40:00+03:00",
status: "filled",
},
{
id: 2,
employee: {
last_name: "Лаврентьев",
first_name: "Сергей",
patronymic: "Анатольевич",
job_title: "Терапевт",
photo: "",
},
start: "2023-04-11T18:00:00+03:00",
end: "2023-04-11T18:30:00+03:00",
status: "partially filled",
},
{
id: 3,
employee: {
last_name: "Захаров",
first_name: "Алексей",
patronymic: "Сергеевич",
job_title: "Хирург",
photo: "",
},
start: "2021-08-23T10:00:00+03:00",
end: "2021-08-23T13:00:00+03:00",
status: "filled",
},
{
id: 4,
employee: {
last_name: "Щевьева",
first_name: "Лариса",
patronymic: "Николаевна",
job_title: "Ортодонт",
photo: "",
},
start: "2023-05-23T14:10:00+03:00",
end: "2023-05-23T15:10:00+03:00",
status: "",
},
{
id: 5,
employee: {
last_name: "Захаров",
first_name: "Алексей",
patronymic: "Сергеевич",
job_title: "Хирург",
photo: "",
},
start: "2022-01-23T13:10:00+03:00",
end: "2022-01-23T13:30:00+03:00",
status: "filled",
},
],
});
const getters = {