diff --git a/app/components/app/doctor/entry-form.vue b/app/components/app/doctor/entry-form.vue
index 52f079ac..bb638f94 100644
--- a/app/components/app/doctor/entry-form.vue
+++ b/app/components/app/doctor/entry-form.vue
@@ -3,6 +3,18 @@ import Block from '~/components/pub/form/block.vue'
import FieldGroup from '~/components/pub/form/field-group.vue'
import Field from '~/components/pub/form/field.vue'
import Label from '~/components/pub/form/label.vue'
+
+const props = defineProps<{ modelValue: any }>()
+const emit = defineEmits(['update:modelValue', 'event'])
+
+const data = computed({
+ get: () => props.modelValue,
+ set: (val) => emit('update:modelValue', val),
+})
+
+function onClick(type: string) {
+ emit('event', type)
+}
@@ -18,7 +30,7 @@ import Label from '~/components/pub/form/label.vue'
-
+
@@ -61,7 +73,6 @@ import Label from '~/components/pub/form/label.vue'
-
@@ -76,8 +87,8 @@ import Label from '~/components/pub/form/label.vue'
-
-
+
+
@@ -94,13 +105,12 @@ import Label from '~/components/pub/form/label.vue'
-
diff --git a/app/components/flow/doctor/add.vue b/app/components/flow/doctor/add.vue
index 0a990f90..98632f5c 100644
--- a/app/components/flow/doctor/add.vue
+++ b/app/components/flow/doctor/add.vue
@@ -1,6 +1,20 @@
-
+
diff --git a/app/components/pub/nav/footer/csd.vue b/app/components/pub/nav/footer/csd.vue
index 78874932..497081e3 100644
--- a/app/components/pub/nav/footer/csd.vue
+++ b/app/components/pub/nav/footer/csd.vue
@@ -12,15 +12,15 @@ function onClick(type: ClickType) {
-