[WIP] Добавил header and footer первичного осмотра
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<template lang="pug">
|
||||
.protocols-wrapper.h-full.flex.flex-col.gap-y-2
|
||||
.protocol.flex.justify-between.p-6
|
||||
.flex.font-bold.text-6xl Первичный осмотр 2024
|
||||
.flex.gap-x-4
|
||||
.icon.flex.rounded.w-10.h-10.items-center.justify-center
|
||||
q-icon(
|
||||
name="print",
|
||||
size="20px",
|
||||
style="color: var(--font-grey-color)"
|
||||
)
|
||||
.icon.flex.rounded.w-10.h-10.items-center.justify-center
|
||||
q-icon(
|
||||
name="app:basket",
|
||||
size="20px",
|
||||
style="color: var(--font-grey-color)"
|
||||
)
|
||||
//- .protocol-body
|
||||
.protocol.flex.justify-between.p-6
|
||||
.flex.h-fit.w-fit.gap-2
|
||||
base-button.text-base.font-semibold(outlined, :size="40") Отменить
|
||||
base-button.text-base.font-semibold(:size="40") Сохранить
|
||||
.flex.items-center.gap-x-3(:style="{color: 'var(--font-grey-color)'}")
|
||||
.flex.font-semibold.text-7xl 0%
|
||||
.flex.font-medium.text-smm.w-20 заполнение осмотра
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BaseButton from "@/components/base/BaseButton.vue";
|
||||
|
||||
export default {
|
||||
name: "MedicalProtocolsInspection",
|
||||
components: { BaseButton },
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="sass" scoped>
|
||||
.protocols-wrapper
|
||||
width: 89.2%
|
||||
|
||||
.protocol
|
||||
background: var(--default-white)
|
||||
width: 100%
|
||||
height: 80px
|
||||
border-radius: 4px
|
||||
|
||||
.icon
|
||||
background: var(--bg-light-grey)
|
||||
</style>
|
||||
@@ -1,13 +1,15 @@
|
||||
<template lang="pug">
|
||||
.wrapper
|
||||
.wrapper.flex.gap-x-2
|
||||
medical-protocols-list
|
||||
medical-protocols-inspection
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MedicalProtocolsList from "@/pages/newMedicalCard/components/MedicalProtocolsList.vue";
|
||||
import MedicalProtocolsInspection from "@/pages/newMedicalCard/components/MedicalProtocolsInspection.vue";
|
||||
export default {
|
||||
name: "MedicalProtocolsWrapper",
|
||||
components: { MedicalProtocolsList },
|
||||
components: { MedicalProtocolsList, MedicalProtocolsInspection },
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user