Merge branch 'ASTRA-72' into 'master'

[WIP] Добавил header and footer первичного осмотра

See merge request andrusyakka/urban-couscous!342
This commit is contained in:
Vasiliy Gavrilin
2023-04-28 17:39:59 +00:00
3 changed files with 54 additions and 2 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -27,6 +27,7 @@ module.exports = {
"4xl": ["44px", { lineHeight: "48px" }],
"5xl": ["28px", { lineHeight: "38px" }],
"6xl": ["24px", { lineHeight: "32px" }],
"7xl": ["40px", { lineHeight: "54px" }],
},
gap: {
"6px": "6px",