[WIP] Добавил карточку с первичным осмотром и тэгами
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template lang="pug">
|
||||
.wrapper.flex.gap-x-2
|
||||
medical-protocols-list
|
||||
medical-protocols-inspection
|
||||
medical-protocols-list(:open-inspection="openInspection")
|
||||
medical-protocols-inspection(:inspection="inspection")
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -10,6 +10,16 @@ import MedicalProtocolsInspection from "@/pages/newMedicalCard/components/Medica
|
||||
export default {
|
||||
name: "MedicalProtocolsWrapper",
|
||||
components: { MedicalProtocolsList, MedicalProtocolsInspection },
|
||||
data() {
|
||||
return {
|
||||
inspection: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
openInspection() {
|
||||
this.inspection = !this.inspection;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user