refactor(treatment-report): restructure treatment report form and components

- Replace SelectDPJP with SelectDoctor component
- Update schema naming from ActionReport to TreatmentReport
- Add doctor selection functionality to treatment report form
- Improve form layout and field organization
- Update related model imports to use single quotes
- add fragment for better form grouping
- cherry pick form field from another branch
This commit is contained in:
Khafid Prayoga
2025-11-25 17:15:00 +07:00
parent 7ee6f40196
commit 3fbcdf9e2a
15 changed files with 532 additions and 46 deletions

No files matched your search

+11
View File
@@ -0,0 +1,11 @@
export { default as Block } from './block.vue'
export { default as ButtonAction } from './button-action.vue'
export { default as FieldGroup } from './field-group.vue'
export { default as Field } from './field.vue'
export { default as FileField } from './file-field.vue'
export { default as Fragment } from './fragment.vue'
export { default as InputBase } from './input-base.vue'
export { default as Label } from './label.vue'
export { default as Select } from './select.vue'
export { default as TextAreaInput } from './text-area-input.vue'
export { default as TextCaptcha } from './text-captcha.vue'