feat/ap-lab-order-52: wip

This commit is contained in:
avsky0095
2025-12-08 08:05:39 +07:00
parent 2f257e6c8d
commit 122b9c5fa5
9 changed files with 1099 additions and 7 deletions

No files matched your search

@@ -0,0 +1,16 @@
<script setup lang="ts">
//
import List from './list.vue'
import Entry from './entry.vue'
const props = defineProps<{
encounter_id: number
}>()
const { mode } = useQueryCRUDMode()
</script>
<template>
<List v-if="mode === 'list'" :encounter_id="encounter_id" />
<Entry v-else :encounter_id="encounter_id" />
</template>