Исправила отображения дат, статусов, врача

This commit is contained in:
Daria Golova
2023-08-16 14:04:21 +03:00
parent 37f4fdf507
commit c866662384
5 changed files with 62 additions and 27 deletions

View File

@@ -22,10 +22,10 @@
)
base-input.search(
size="M"
:width="350",
:width="386",
v-model="currentWeek",
)
.h-5.w-5.flex.items-center.justify-center
.h-5.w-5.flex.items-center.justify-center.ml-3
q-icon.calendar-icon.text.cursor-pointer(
:name="calendarVisibility ? 'app:cancel-mini' : 'app:calendar'",
size="20px",
@@ -36,7 +36,7 @@
transition-show="scale",
transition-hide="scale"
self="top middle",
:offset="[140, 8]"
:offset="[160, 8]"
)
base-calendar(
v-model="dates",
@@ -103,7 +103,7 @@ export default {
currentWeek() {
return `${this.dates?.from?.format(
"D MMMM YYYY"
)} - ${this.dates?.to?.format("D MMMM YYYY")}`;
)} ${this.dates?.to?.format("D MMMM YYYY")}`;
},
...mapState({
selectedDates: (state) => state.calendar.selectedDates,