* изменил таблицы в основном отчете
* изменил метод сохранения пациентов основного отчета
This commit is contained in:
16
resources/js/Pages/Report/Components/PatientSection.vue
Normal file
16
resources/js/Pages/Report/Components/PatientSection.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup>
|
||||
import { NCollapse } from 'naive-ui'
|
||||
import {ref} from "vue";
|
||||
|
||||
const openedCollapsible = ref()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<NCollapse v-model:expanded-names="openedCollapsible">
|
||||
<slot />
|
||||
</NCollapse>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user