feat: Add encounter list with filtering, VClaim SEP/SIPP document management, and a new file field component.

This commit is contained in:
riefive
2025-12-08 16:01:36 +07:00
parent b77646c9a6
commit e33b23205a
4 changed files with 13 additions and 8 deletions
+3 -2
View File
@@ -72,7 +72,7 @@ async function onFileChange(event: Event, handleChange: (value: any) => void) {
</script>
<template>
<DE.Cell>
<DE.Cell :class="class">
<DE.Label
v-if="label !== ''"
:label-for="fieldName"
@@ -91,12 +91,13 @@ async function onFileChange(event: Event, handleChange: (value: any) => void) {
<FormItem>
<FormControl class="flex flex-col">
<Input
@change="onFileChange($event, handleChange)"
:id="fieldName"
type="file"
:disabled="isDisabled"
v-bind="{ onBlur: componentField.onBlur }"
:placeholder="placeholder"
:class="cn('focus:border-primary focus:ring-2 focus:ring-primary focus:ring-offset-0')"
@change="onFileChange($event, handleChange)"
/>
</FormControl>
<FormMessage />