diff --git a/src/pages/newMedicalCard/components/MedicalBasicDataWrapper.vue b/src/pages/newMedicalCard/components/MedicalBasicDataWrapper.vue index 12bb491..c6b9421 100644 --- a/src/pages/newMedicalCard/components/MedicalBasicDataWrapper.vue +++ b/src/pages/newMedicalCard/components/MedicalBasicDataWrapper.vue @@ -19,7 +19,7 @@ export default { diff --git a/src/pages/newMedicalCard/components/MedicalProtocolsList.vue b/src/pages/newMedicalCard/components/MedicalProtocolsList.vue index 49f9d20..eef441b 100644 --- a/src/pages/newMedicalCard/components/MedicalProtocolsList.vue +++ b/src/pages/newMedicalCard/components/MedicalProtocolsList.vue @@ -7,45 +7,101 @@ label="Создать осмотр", no-caps, icon="add", - :style="{width: '100%'}" + :style="{width: '100%', height: '40px'}" + padding="0", ) - .p-4.rounded.background.h-full + .p-4.rounded.background.list .flex base-select( :style="{flex: 1}", ) q-btn.ml-2( - icon="sort" + icon="app:sort-number", :style="{width: '40px', height: '40px'}", - padding="0" - :class="sortingClass" + padding="0", + :class="sortingClass", @click="invertSorting" ) .flex.py-4.w-full.color-grey.text-base.justify-center span.opacity-50 Осмотров: 5 - .flex.gap-y-2 - .w-full.border.rounded.border-grey.p-4(@click="openInspection") - .flex.justify-between.mb-7 - .flex.flex-col.gap-y-1 - span.text-xl.font-bold.color-blue.line-height 2023 г. - .text-smm.color-grey.flex.items-center.gap-x-6px.line-height - span.align-middle 22.02 - .rounded-full.h-1.w-1.background-grey - span.align-middle 18:30 - 19:30 - .flex.items-center.justify-center.h-6.w-6.rounded.background-grey - img.teeth-icon(src="@/assets/icons/teeth.svg") - .h-10 + .flex.flex-col.gap-y-2 + medical-protocol-card( + v-for="protocol in protocolsData", :key="protocol.id", + :protocol-data="protocol", + @click="openInspection" + )