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

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

@@ -17,17 +17,17 @@
)
.flex.flex-col.gap-y-6px
span.color-grey.line-height.text-sm.font-semibold Врач
.flex.gap-x-2
.flex.gap-x-2.items-center
base-avatar(:size="40")
img.object-cover.h-full(
v-if="userData?.photo",
:src="userData?.photo",
v-if="userData?.avatar",
:src="url + userData?.avatar",
alt="avatar"
)
span.text-sm.color-blue(v-else) {{ avatar }}
span.text-sm.text-dark(v-else) {{ avatar }}
.flex.flex-col
span.text-sm.color-blue.line-height.mb-2px {{ employeeName }}
span.color-grey.line-height.text-sm {{ userData?.job_title ? userData?.job_title : "Терапевт" }}
span.text-sm.text-dark.line-height.mb-2px.font-medium {{ employeeName }}
span.color-grey.line-height.text-xsx.font-medium {{ userData?.job_title ? userData?.job_title : "Терапевт" }}
.flex.gap-2.mt-8
base-button(
type="secondary",
@@ -67,6 +67,7 @@ export default {
date: null,
startTime: null,
},
url: "https://astra-dev.dopcore.com/api/store/",
};
},
computed: {

View File

@@ -7,7 +7,7 @@
@click="changeShownCreateModal(true)",
v-if="createInspection"
)
q-icon(name="app:plus", size="18px")
q-icon.plus-icon(name="app:big-plus", size="24px")
.p-4.rounded.background.list.flex.flex-col.gap-y-6
.flex
base-select(
@@ -157,4 +157,6 @@ export default {
color: var(--default-white)
.color-grey
color: var(--font-grey-color)
.plus-icon :deep(path)
fill: white
</style>