feat (cprj): implement cprj (patient note) functionality

This commit is contained in:
Abizrh
2025-11-13 21:29:16 +07:00
parent 5f9e441147
commit f629546f13
11 changed files with 537 additions and 71 deletions
+6 -3
View File
@@ -1,7 +1,7 @@
<script setup lang="ts">
import type { DataTableLoader } from '~/components/pub/my-ui/data-table/type'
import type { HeaderPrep, RefSearchNav } from '~/components/pub/my-ui/data/types'
import AssesmentFunctionList from '~/components/app/soapi/list.vue'
import List from '~/components/app/soapi/list.vue'
import Header from '~/components/pub/my-ui/nav-header/prep.vue'
const props = defineProps<{
@@ -59,7 +59,10 @@ provide('table_data_loader', isLoading)
</script>
<template>
<Header :prep="{ ...hreaderPrep }" :ref-search-nav="refSearchNav" />
<Header
:prep="{ ...hreaderPrep }"
:ref-search-nav="refSearchNav"
/>
<AssesmentFunctionList :data="data" />
<List :data="data" />
</template>